1234567891011121314151617181920212223242526 |
- <?php
- namespace loyalsoft;
- /**
- * Description of ZoneListItemInfoModel
- * @version
- * 1.0.0 Created at 2017-2-14. by --gwang
- * @author gwang (mail@wanggangzero.cn)
- * @copyright ? 2017-2-14, SJZ LoyalSoft Corporation & gwang. All rights reserved.
- */
- /**
- * 分区列表元素的数据结构
- */
- class ZoneListItemInfoModel
- {
- public $zoneid;
- public $name;
- public $isNew;
- public $status;
- public $isRecommended;
- public $publicTs;
- }
|