1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- ////////////////////
- // 由CodeGenerator创建。
- // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
- // author: gwang
- // 日期: 2019-10-18 14:10:11
- ////////////////////
- /**
- * Static Model choujiang_settings
- */
- class sm_choujiang_settings
- {
- /**
- * @var Int32 抽奖类型 default(0)
- */
- public $typeId;
- /**
- * @var Int32 定价:所需道具(typeId)数量 default(0)
- */
- public $price;
- /**
- * @var Int32 每日限次
- */
- public $dailyLimit;
- /**
- * @var Int32 保底奖励的最大次数
- */
- public $baodiMax;
- }
|