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

65 lines
1.2 KiB
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 PackageInfoDto
{
/**
* 物品价值,单位元
**/
public $good_value;
/**
* 大件快运中的货品描述,比如服装,家具。 顺丰取号必须传此参数
**/
public $goods_description;
/**
* 包裹高,单位厘米
**/
public $height;
/**
* 包裹id用于拆合单场景只能传入数字、字母和下划线批量请求时值不得重复大小写敏感即123A,123a 不可当做不同ID否则存在一定可能取号失败
**/
public $id;
/**
* 商品信息,数量限制为100
**/
public $items;
/**
* 包裹长,单位厘米
**/
public $length;
/**
* 大件快运中的包装方式描述
**/
public $packaging_description;
/**
* 子母件模式中的总包裹数/总件数用于打印当前包裹处于总件数的位置比如5-2可以表示总包裹数为5当前为第2个包裹只有快运公司需要传入其他的可以不用传入
**/
public $total_packages_count;
/**
* 体积, 单位 ml
**/
public $volume;
/**
* 重量,单位 g
**/
public $weight;
/**
* 包裹宽,单位厘米
**/
public $width;
}
?>