| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id (主键)
- * @property integer $num 邀请人数
- * @property integer $money 奖励
- * @property integer $sort 排序
- * @property integer $status 状态 0 禁用 1正常
- */
- class Invite extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_invite';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
-
-
- }
|