You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Niucloud-admin 企业快速开发的saas管理平台
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网址:https://www.niucloud-admin.com
|
|
// +----------------------------------------------------------------------
|
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Niucloud Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\validate\site;
|
|
|
|
use think\Validate;
|
|
|
|
/**
|
|
* 站点分组验证类
|
|
* Class SiteGroup
|
|
* @package app\validate\site
|
|
*/
|
|
class SiteGroup extends Validate
|
|
{
|
|
|
|
|
|
protected $rule = [
|
|
'group_name' => 'require|max:20',
|
|
'app' => 'require',
|
|
];
|
|
|
|
protected $message = [
|
|
'group_name.require' => 'validate_site.group_name_require',
|
|
'group_name.max' => 'validate_site.group_name_max',
|
|
'app.require' => 'validate_site.app_require',
|
|
|
|
];
|
|
|
|
protected $scene = [
|
|
'add' => ['group_name', 'app'],
|
|
'edit' => ['group_name'],
|
|
];
|
|
}
|
|
|