config.php 627 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace rbridge\fulu_youjun;
  3. class config
  4. {
  5. const DEFAULT_MCHID = 10319;
  6. const MCH_KEY = '';
  7. const MCH_NOTIFY_URL = 'fulu_youjun';
  8. const AES_IV = '1111111111111111';
  9. const KEY = 'LiJqfCbI%mqny3mD';
  10. const USER_ID = '8d91fd4c-2309-4949-9676-6c20084d57cd';
  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. }