53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | saiadmin [ saiadmin快速开发框架 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Author: your name
|
||
// +----------------------------------------------------------------------
|
||
namespace app\dice\model\lottery_pool_config;
|
||
|
||
use plugin\saiadmin\basic\think\BaseModel;
|
||
|
||
/**
|
||
* 色子奖池配置模型
|
||
*
|
||
* dice_lottery_pool_config 色子奖池配置
|
||
*
|
||
* @property $id ID
|
||
* @property $name 名称
|
||
* @property $remark 备注
|
||
* @property $safety_line 安全线
|
||
* @property $kill_enabled 是否启用杀分:0=关闭 1=开启
|
||
* @property $create_time 创建时间
|
||
* @property $update_time 修改时间
|
||
* @property $t1_weight T1池权重
|
||
* @property $t2_weight T2池权重
|
||
* @property $t3_weight T3池权重
|
||
* @property $t4_weight T4池权重
|
||
* @property $t5_weight T5池权重
|
||
* @property $profit_amount 池子累计盈利(每局抽奖累加 100-real_ev,仅展示不可编辑)
|
||
*/
|
||
class DiceLotteryPoolConfig extends BaseModel
|
||
{
|
||
/**
|
||
* 数据表主键
|
||
* @var string
|
||
*/
|
||
protected $pk = 'id';
|
||
|
||
/**
|
||
* 数据库表名称
|
||
* @var string
|
||
*/
|
||
protected $table = 'dice_lottery_pool_config';
|
||
|
||
/**
|
||
* 名称 搜索
|
||
*/
|
||
public function searchNameAttr($query, $value)
|
||
{
|
||
$query->where('name', 'like', '%'.$value.'%');
|
||
}
|
||
|
||
}
|