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

72 lines
1.8 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 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\model\site;
use app\model\addon\Addon;
use core\base\BaseModel;
/**
* 站点分组模型
* Class SiteGroup
* @package app\model\site
*/
class SiteGroup extends BaseModel
{
/**
* 数据表主键
* @var string
*/
protected $pk = 'group_id';
// 设置json类型字段
protected $json = ['app', 'addon'];
// 设置JSON数据返回数组
protected $jsonAssoc = true;
/**
* 模型名称
* @var string
*/
protected $name = 'site_group';
/**
* 关联应用
* @param $value
* @param $data
* @return Addon[]|array|\think\Collection
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getGroupRolesDataAttr($value, $data)
{
if (empty($data['addon']))
return [];
return (new Addon())->where([['key', 'in', $data['addon']]])->select();
}
/**
* 关键字搜索
* @param $query
* @param $value
* @param $data
*/
public function searchKeywordsAttr($query, $value, $data)
{
if ($value) {
$query->where('group_name', 'like', '%' . $value . '%');
}
}
}