12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Ins_Gift
- *
- * @author cyzhao
- */
- class Ins_Gift extends Object_ext{
- /**
- * 礼包id
- * @var type
- */
- public $giftId = 0;
- /**
- * 开始时间
- * @var type
- */
- public $startTs = 0;
-
- /*
- * 结束时间
- */
- public $endTs = 0;
- public function __construct($args = null) {
- parent::__construct($args);
- }
- }
|