LiveApply.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. * DSKMS多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 验证器
  14. */
  15. class LiveApply extends Validate
  16. {
  17. protected $rule = [
  18. 'live_apply_name'=>'require',
  19. 'live_apply_play_time'=>'require',
  20. 'live_apply_remark'=>'require|max:255',
  21. 'live_apply_push_state'=>'require|in:1,2',
  22. ];
  23. protected $message = [
  24. 'live_apply_name.require' => '请填写直播标题',
  25. 'live_apply_play_time.require' => '请填写直播时间',
  26. 'live_apply_remark.require' => '请填写申请理由',
  27. 'live_apply_remark.max' => '申请理由不能超过255字',
  28. 'live_apply_push_state.require' => '缺少推流状态',
  29. 'live_apply_push_state.in' => '推流状态错误',
  30. ];
  31. protected $scene = [
  32. 'live_apply_save' => ['live_apply_name','live_apply_play_time', 'live_apply_remark'],
  33. 'live_apply_change' => ['live_apply_push_state'],
  34. ];
  35. }