Brand.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 验证器
  14. */
  15. class Brand extends Validate
  16. {
  17. protected $rule = [
  18. 'brand_name'=>'require',
  19. 'brand_initial'=>'require',
  20. 'brand_sort'=>'require|number'
  21. ];
  22. protected $message = [
  23. 'brand_name.require'=>'品牌名称不能为空',
  24. 'brand_initial.require'=>'请填写首字母',
  25. 'brand_sort.require'=>'排序仅可以为数字',
  26. 'brand_sort.number'=>'排序仅可以为数字'
  27. ];
  28. protected $scene = [
  29. 'brand_add' => ['brand_name', 'brand_initial', 'brand_sort'],
  30. 'brand_edit' => ['brand_name', 'brand_initial', 'brand_sort'],
  31. ];
  32. }