shop-php/extend/taobao/domain/Location.php
2024-01-26 09:39:36 +08:00

40 lines
488 B
PHP
Executable File
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 Location
{
/**
* 详细地址最大256个字节128个中文
**/
public $address;
/**
* 所在城市(中文名称)
**/
public $city;
/**
* 国家名称
**/
public $country;
/**
* 区/县只适用于物流API
**/
public $district;
/**
* 所在省份(中文名称)
**/
public $state;
/**
* 邮政编码
**/
public $zip;
}
?>