| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id (主键)
- * @property integer $user_id 会员信息
- * @property string $name 姓名
- * @property string $number 身份证
- * @property string $account 账号
- * @property integer $year 年限
- * @property integer $status 状态 1待审核 2通过 3驳回
- * @property string $money 奖励金额
- * @property string $created_at 创建时间
- * @property string $updated_at 更新时间
- */
- class CheckIn extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_check_in';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
-
-
-
- }
|