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

40 lines
438 B
PHP

<?php
/**
* 物流单号信息
* @author auto create
*/
class WaybillOrderConfirmWaybillInfo
{
/**
* 包裹高,单位厘米
**/
public $height;
/**
* 包裹长,单位厘米
**/
public $length;
/**
* 体积, 单位 ml
**/
public $volume;
/**
* 面单号
**/
public $waybill_code;
/**
* 重量,单位 g
**/
public $weight;
/**
* 包裹宽,单位厘米
**/
public $width;
}
?>