System.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace plugin\admin\app\model;
  3. use plugin\admin\app\model\Base;
  4. /**
  5. * @property integer $id 主键(主键)
  6. * @property integer autonym 实名奖励
  7. * @property integer $sign_award 签到奖励
  8. * @property integer register_award 注册赠送金额
  9. * @property integer $is_money 收益钱包开关
  10. * @property integer $min_money 收益余额最小提现金额
  11. * @property integer $is_money_two 佣金钱包开关
  12. * @property integer $min_money_two 佣金钱包最小提现金额
  13. * @property integer $rebate 一级返佣
  14. * @property integer $rebate_one 二级返佣
  15. * @property integer $rebate_two 三级返佣
  16. * @property string $account 开户人
  17. * @property string $card_number 卡号
  18. * @property string $opening_bank 开户行地址
  19. * @property integer $stock_rights 赠送股权
  20. * @property string $service 客服地址
  21. * @property string $association 社群
  22. * @property string $affiche 公告1
  23. * @property string $affiche_one 公告2
  24. * @property string $institution 机构介绍
  25. * @property string $institution_message 机构信息
  26. * @property string $institution_general_rules 机构总则
  27. * @property string $line_of_business 业务范围
  28. */
  29. class System extends Base
  30. {
  31. /**
  32. * The table associated with the model.
  33. *
  34. * @var string
  35. */
  36. protected $table = 'wa_system';
  37. /**
  38. * The primary key associated with the table.
  39. *
  40. * @var string
  41. */
  42. protected $primaryKey = 'id';
  43. /**
  44. * Indicates if the model should be timestamped.
  45. *
  46. * @var bool
  47. */
  48. public $timestamps = false;
  49. }