Files
OMS/app/erpapi/lib/hqepay/response/params/logistics.php
2025-12-28 23:13:25 +08:00

28 lines
871 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class erpapi_hqepay_response_params_logistics extends erpapi_hqepay_response_params_abstract {
protected function push(){
return array(
'logi_status' => array(
'type'=> 'enum',
'required' => 'true',
'errmsg' => '只接受已揽收或已签收物流信息',
'value' => array('1','2','3','4','5','6')
),
'logi_no' => array(
'required' => 'true',
'errmsg' => '缺少物流单号不接收!'
),
'delivery_id' => array(
'required' => 'true',
'errmsg' => '该物流状态签已处理过或不存在,不接受!'
),
);
}
}