Mailtemplates.php 1002 B

123456789101112131415161718192021222324252627282930313233
  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 Mailtemplates extends Validate
  16. {
  17. protected $rule = [
  18. 'code'=>'require',
  19. 'title'=>'require',
  20. 'content'=>'require',
  21. ];
  22. protected $message = [
  23. 'code.require'=>'编号不能为空',
  24. 'title.require'=>'标题不能为空',
  25. 'content.require'=>'正文不能为空',
  26. ];
  27. protected $scene = [
  28. 'email_tpl_edit' => ['code','title', 'content'],
  29. ];
  30. }