// +---------------------------------------------------------------------- namespace app\validate\admin; use think\Validate; class ProductLabelValidate extends Validate { protected $failException = true; protected $rule = [ 'label_name|标签名称' => 'require|max:6', 'info|说明' => 'max:32', 'sort|排序' => 'integer|min:0' ]; }