27 lines
740 B
PHP
27 lines
740 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2023-2024 美天智能科技
|
|
* @author 李志强
|
|
* @link http://www.meteteme.com
|
|
*/
|
|
|
|
namespace app\admin\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class ConfCheck extends Validate
|
|
{
|
|
protected $rule = [
|
|
'title' => 'require|unique:config',
|
|
'name' => 'require|lower|min:3|unique:config',
|
|
];
|
|
|
|
protected $message = [
|
|
'title.require' => '配置名称不能为空',
|
|
'title.unique' => '同样的配置名称已经存在',
|
|
'name.require' => '配置标识不能为空',
|
|
'name.lower' => '配置标识只能是小写字母',
|
|
'name.min' => '配置标识至少需要2个小写字母',
|
|
'name.unique' => '同样的配置标识已经存在',
|
|
];
|
|
} |