| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id (主键)
- * @property string $name 标题
- * @property string $img 图片
- * @property integer $money 奖励
- * @property integer $sort 排序
- * @property integer $status 状态 0 禁用 1正常
- */
- class Raffle extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_raffle';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
-
-
- }
|