Sellerbrand.php 885 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. *
  9. * ----------------------------------------------------------------------------
  10. *
  11. * ============================================================================
  12. * 验证器
  13. */
  14. class Sellerbrand extends Validate
  15. {
  16. protected $rule = [
  17. 'brand_name' => 'require',
  18. 'brand_initial' => 'require'
  19. ];
  20. protected $message = [
  21. 'brand_name.require' => '品牌名称不能为空',
  22. 'brand_initial.require' => '请填写首字母'
  23. ];
  24. protected $scene = [
  25. 'brand_save' => ['brand_name', 'brand_initial'],
  26. 'brand_edit' => ['brand_name', 'brand_initial'],
  27. ];
  28. }