Sellercomplain.php 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 验证器
  15. */
  16. class Sellercomplain extends Validate
  17. {
  18. protected $rule = [
  19. 'appeal_message'=>'require|length:1,255',
  20. ];
  21. protected $message = [
  22. 'appeal_message.require'=>'投诉内容不能为空且必须小于100个字符|投诉内容不能为空且必须小于100个字符',
  23. 'appeal_message.length'=>'投诉内容不能为空且必须小于100个字符|投诉内容不能为空且必须小于100个字符',
  24. ];
  25. protected $scene = [
  26. 'appeal_save' => ['appeal_message'],
  27. ];
  28. }