| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * 结果对象
- * @author auto create
- */
- class Model
- {
-
- /**
- * 生效时间
- **/
- public $effective_time;
-
- /**
- * 失效时间
- **/
- public $expire_time;
-
- /**
- * 商品ID
- **/
- public $offer_id;
-
- /**
- * 商品名称
- **/
- public $offer_name;
-
- /**
- * 订购时间
- **/
- public $order_time;
- }
- ?>
|