30 lines
286 B
PHP
30 lines
286 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* 仓库列表
|
||
|
* @author auto create
|
||
|
*/
|
||
|
class StoreInfo
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 详细地址
|
||
|
**/
|
||
|
public $address;
|
||
|
|
||
|
/**
|
||
|
* XXX果园
|
||
|
**/
|
||
|
public $name;
|
||
|
|
||
|
/**
|
||
|
* 仓库真实名字
|
||
|
**/
|
||
|
public $real_name;
|
||
|
|
||
|
/**
|
||
|
* 仓库服务代码
|
||
|
**/
|
||
|
public $service_code;
|
||
|
}
|
||
|
?>
|