CheckIn.php 792 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace plugin\admin\app\model;
  3. use plugin\admin\app\model\Base;
  4. /**
  5. * @property integer $id (主键)
  6. * @property integer $user_id 会员信息
  7. * @property string $name 姓名
  8. * @property string $number 身份证
  9. * @property string $account 账号
  10. * @property integer $year 年限
  11. * @property integer $status 状态 1待审核 2通过 3驳回
  12. * @property string $money 奖励金额
  13. * @property string $created_at 创建时间
  14. * @property string $updated_at 更新时间
  15. */
  16. class CheckIn extends Base
  17. {
  18. /**
  19. * The table associated with the model.
  20. *
  21. * @var string
  22. */
  23. protected $table = 'wa_check_in';
  24. /**
  25. * The primary key associated with the table.
  26. *
  27. * @var string
  28. */
  29. protected $primaryKey = 'id';
  30. }