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

30 lines
439 B
PHP
Raw Permalink 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 LogisticsNodeTopDTO
{
/**
* ACCEPT(已揽收),TRANSPORT(运输中),DELIVERING(派送中),SIGN(已签收),CANCEL(已取消),FAILED(物流异常)
**/
public $action;
/**
* 配送员信息
**/
public $delivery;
/**
* 货物所在的当前位置
**/
public $location;
/**
* 操作时间戳精确到毫秒ms
**/
public $operate_time;
}
?>