| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id 主键(主键)
- * @property integer autonym 实名奖励
- * @property integer $sign_award 签到奖励
- * @property integer register_award 注册赠送金额
- * @property integer $is_money 收益钱包开关
- * @property integer $min_money 收益余额最小提现金额
- * @property integer $is_money_two 佣金钱包开关
- * @property integer $min_money_two 佣金钱包最小提现金额
- * @property integer $rebate 一级返佣
- * @property integer $rebate_one 二级返佣
- * @property integer $rebate_two 三级返佣
- * @property string $account 开户人
- * @property string $card_number 卡号
- * @property string $opening_bank 开户行地址
- * @property integer $stock_rights 赠送股权
- * @property string $service 客服地址
- * @property string $association 社群
- * @property string $affiche 公告1
- * @property string $affiche_one 公告2
- * @property string $institution 机构介绍
- * @property string $institution_message 机构信息
- * @property string $institution_general_rules 机构总则
- * @property string $line_of_business 业务范围
- */
- class System extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_system';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
-
-
- }
|