1234567891011121314151617181920212223 |
- <?php
- namespace rbridge\fulu_youjun;
- class config
- {
- const DEFAULT_MCHID = 10319;
- const MCH_KEY = '';
- const MCH_NOTIFY_URL = 'fulu_youjun';
- const AES_IV = '1111111111111111';
- const KEY = 'LiJqfCbI%mqny3mD';
- const USER_ID = '8d91fd4c-2309-4949-9676-6c20084d57cd';
- const ORDER_SEND_URL = 'https://public-robot.open.fulu.com/api/OutOrder/UpdateStatusProcess'; //配送中
- const ORDER_COMPLETE_URL = 'https://public-robot.open.fulu.com/api/OutOrder/UpdateStatus'; //成功/失败/可疑
- const ORDER_STATUS = [
- ORDER_STATE_SUCCESS => 1,
- ORDER_STATE_CANCEL => 2,
- ];
- }
|