GroupDataValidate.php 342 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020-03-27
  7. *
  8. *
  9. */
  10. namespace app\validate\admin;
  11. use think\Validate;
  12. class GroupDataValidate extends Validate
  13. {
  14. protected $failException = true;
  15. protected $rule = [
  16. 'status|显示状态' => 'require|in:0,1',
  17. 'sort|排序' => 'require|integer'
  18. ];
  19. }