1234567891011121314151617181920212223 |
- <?php
- namespace rbridge\fulu;
- class config
- {
- const DEFAULT_MCHID = 10299;
- const MCH_KEY = '';
- const MCH_NOTIFY_URL = 'fulu';
- const AES_IV = '1111111111111111';
- const KEY = 'Dw^V9&6*Tzz1rMe5';
- const USER_ID = '786a9dd8-6a0e-4eac-91f9-cf231660cfb5';
- 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,
- ];
- }
|