40 lines
422 B
PHP
40 lines
422 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 店铺地址
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class ShopAddress
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 区域, string (50)
|
||
|
**/
|
||
|
public $area;
|
||
|
|
||
|
/**
|
||
|
* 城市, string (50)
|
||
|
**/
|
||
|
public $city;
|
||
|
|
||
|
/**
|
||
|
* 详细地址, string (200)
|
||
|
**/
|
||
|
public $detail_address;
|
||
|
|
||
|
/**
|
||
|
* 省份, string (50)
|
||
|
**/
|
||
|
public $province;
|
||
|
|
||
|
/**
|
||
|
* 村镇, string (50)
|
||
|
**/
|
||
|
public $town;
|
||
|
|
||
|
/**
|
||
|
* 邮编, string (50)
|
||
|
**/
|
||
|
public $zip_code;
|
||
|
}
|
||
|
?>
|