Files
huangjingfen/pro_v3.5.1/app/validate/admin/user/UserLabelCateValidate.php

47 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2026-03-07 22:29:07 +08:00
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\validate\admin\user;
use think\Validate;
/**
* Class UserLabelCateValidate
* @package app\validate\admin\user
*/
class UserLabelCateValidate extends Validate
{
/**
* 定义验证规则
* 格式:'字段名' => ['规则1','规则2'...]
*
* @var array
*/
protected $rule = [
'name' => 'require',
'sort' => 'require|number'
];
/**
* 定义错误信息
* 格式:'字段名.规则名' => '错误信息'
*
* @var array
*/
protected $message = [
'name.require' => '请填写标签分类名称',
'sort.require' => '请填写标签分类排序',
'sort.number' => '标签分类必须为数字'
];
}