config.php 613 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace rbridge\fulu;
  3. class config
  4. {
  5. const DEFAULT_MCHID = 10299;
  6. const MCH_KEY = '';
  7. const MCH_NOTIFY_URL = 'fulu';
  8. const AES_IV = '1111111111111111';
  9. const KEY = 'Dw^V9&6*Tzz1rMe5';
  10. const USER_ID = '786a9dd8-6a0e-4eac-91f9-cf231660cfb5';
  11. const ORDER_SEND_URL = 'https://public-robot.open.fulu.com/api/OutOrder/UpdateStatusProcess'; //配送中
  12. const ORDER_COMPLETE_URL = 'https://public-robot.open.fulu.com/api/OutOrder/UpdateStatus'; //成功/失败/可疑
  13. const ORDER_STATUS = [
  14. ORDER_STATE_SUCCESS => 1,
  15. ORDER_STATE_CANCEL => 2,
  16. ];
  17. }