SlideValidate.php 923 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 小夏 < 449134904@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\validate;
  12. use think\Validate;
  13. class SlideValidate extends Validate
  14. {
  15. protected $rule = [
  16. 'name' => 'require',
  17. ];
  18. protected $message = [
  19. 'name.require' => '分类名称必须',
  20. ];
  21. protected $scene = [
  22. 'add' => ['name'],
  23. 'edit' => ['name'],
  24. ];
  25. }