Invite.php 694 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace plugin\admin\app\model;
  3. use plugin\admin\app\model\Base;
  4. /**
  5. * @property integer $id (主键)
  6. * @property integer $num 邀请人数
  7. * @property integer $money 奖励
  8. * @property integer $sort 排序
  9. * @property integer $status 状态 0 禁用 1正常
  10. */
  11. class Invite extends Base
  12. {
  13. /**
  14. * The table associated with the model.
  15. *
  16. * @var string
  17. */
  18. protected $table = 'wa_invite';
  19. /**
  20. * The primary key associated with the table.
  21. *
  22. * @var string
  23. */
  24. protected $primaryKey = 'id';
  25. /**
  26. * Indicates if the model should be timestamped.
  27. *
  28. * @var bool
  29. */
  30. public $timestamps = false;
  31. }