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

65 lines
791 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 WarehouseInfos
{
/**
* 地区string15
**/
public $area;
/**
* 城市string15
**/
public $city;
/**
* 详细地址string50
**/
public $detail_address;
/**
* 负责人手机string20
**/
public $mobile;
/**
* 仓库名称string50
**/
public $name;
/**
* 省份string15
**/
public $province;
/**
* 仓库状态string20
**/
public $status;
/**
* 仓库电话string20
**/
public $tel;
/**
* 乡镇string15
**/
public $town;
/**
* 仓库编码string50
**/
public $warehouse_code;
/**
* 仓库名称string50
**/
public $warehouse_name;
}
?>