mirror of https://github.com/1099438829/apeblog
31 lines
908 B
PHP
31 lines
908 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | hulacwms 3.0 呼啦企业网站管理系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2021 https://www.kaifashu.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 开发树
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\common\validate;
|
|
use think\Validate;
|
|
|
|
/**
|
|
* 管理员验证器
|
|
*/
|
|
|
|
class AdminMemberEdit extends Validate {
|
|
|
|
protected $rule = [
|
|
'username' => 'require|max:16',
|
|
'nickname' => 'max:10',
|
|
];
|
|
|
|
protected $message = [
|
|
'username.require' => '请输入用户名',
|
|
'username.max' => '用户名最多不能超过16个字符',
|
|
'nickname.max' => '用户名最多不能超过10个字符',
|
|
];
|
|
|
|
}
|