UserLabelValidate.php 302 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020-05-07
  7. *
  8. *
  9. */
  10. namespace app\validate\admin;
  11. use think\Validate;
  12. class UserLabelValidate extends Validate
  13. {
  14. protected $failException = true;
  15. protected $rule = [
  16. 'label_name|标签名称' => 'require|max:32'
  17. ];
  18. }