| 1234567891011121314151617181920212223 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-05-07
- *
- *
- */
- namespace app\validate\admin;
- use think\Validate;
- class UserLabelValidate extends Validate
- {
- protected $failException = true;
- protected $rule = [
- 'label_name|标签名称' => 'require|max:32'
- ];
- }
|