65 lines
655 B
PHP
65 lines
655 B
PHP
<?php
|
|
|
|
/**
|
|
* 卖家退货地址列表
|
|
* @author auto create
|
|
*/
|
|
class Address
|
|
{
|
|
|
|
/**
|
|
* 乡镇/街道地址详情
|
|
**/
|
|
public $address_detail;
|
|
|
|
/**
|
|
* 地址ID
|
|
**/
|
|
public $address_id;
|
|
|
|
/**
|
|
* 区
|
|
**/
|
|
public $area_name;
|
|
|
|
/**
|
|
* 市
|
|
**/
|
|
public $city_name;
|
|
|
|
/**
|
|
* 国家
|
|
**/
|
|
public $country_name;
|
|
|
|
/**
|
|
* 行政区划代码
|
|
**/
|
|
public $division_code;
|
|
|
|
/**
|
|
* 收件人手机
|
|
**/
|
|
public $mobile;
|
|
|
|
/**
|
|
* 邮政编码
|
|
**/
|
|
public $post_code;
|
|
|
|
/**
|
|
* 省
|
|
**/
|
|
public $province_name;
|
|
|
|
/**
|
|
* 收件人姓名
|
|
**/
|
|
public $receiver_name;
|
|
|
|
/**
|
|
* 乡镇/街道
|
|
**/
|
|
public $town_name;
|
|
}
|
|
?>
|