CollegeTeacherValidate.php 700 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\admin\validate\life;
  3. use support\Validate;
  4. class CollegeTeacherValidate extends Validate
  5. {
  6. protected $rule = [
  7. 'teacher_id' => 'require|integer',
  8. 'teacher_name|老师名称' => 'require',
  9. 'teacher_title|职称' => 'max:64',
  10. 'teacher_img|头像' => 'require|url',
  11. 'teacher_introduction|简介' => 'max:255',
  12. 'teacher_is_del' => 'integer',
  13. ];
  14. protected $message = [];
  15. protected $scene = [
  16. 'add' => ['teacher_name', 'teacher_title', 'teacher_img', 'teacher_introduction'],
  17. 'update' => ['teacher_id', 'teacher_name', 'teacher_title', 'teacher_img', 'teacher_introduction', 'teacher_is_del']
  18. ];
  19. }