REAPI/extend/sdk/taobao/top/domain/LogisticsAgreement.php
2024-09-29 15:43:18 +08:00

50 lines
698 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
/**
* 物流服务承诺
* @author auto create
*/
class LogisticsAgreement
{
/**
* 物流信息,多个值时用英文逗号隔开
**/
public $asdp_ads;
/**
* 物流服务业务身份
**/
public $asdp_biz_type;
/**
* 服务承诺/异常文案
**/
public $logistics_service_msg;
/**
* 1不支持子单部分发货
**/
public $no_detail_part_consign;
/**
* 承诺/最晚送达时间
**/
public $promise_sign_time;
/**
* ERP应推单时间(主单)
**/
public $push_time;
/**
* 计划送达时间
**/
public $sign_time;
/**
* 1代表该订单是预售下沉订单类型为前置表达
**/
public $sink_type;
}
?>