test_lgq/niucloud/app/model/dict/Dict.php
2024-01-24 17:36:08 +08:00

78 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\model\dict;
use core\base\BaseModel;
use think\model\concern\SoftDelete;
use think\model\relation\HasMany;
use think\model\relation\HasOne;
/**
* 数据字典模型
* Class Dict
* @package app\model\dict
*/
class Dict extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'sys_dict';
protected $type = [
'dictionary' => 'json'
];
// 设置json类型字段
protected $json = ['dictionary'];
// 设置JSON数据返回数组
protected $jsonAssoc = true;
/**
* 搜索器:数据字典字典名称
* @param $value
* @param $data
*/
public function searchNameAttr($query, $value, $data)
{
if ($value) {
$query->where("name", $value);
}
}
/**
* 搜索器:数据字典字典关键词
* @param $value
* @param $data
*/
public function searchKeyAttr($query, $value, $data)
{
if ($value) {
$query->where("key", $value);
}
}
}