UpdateBaseTeacherEducationDto.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.xjrsoft.module.teacher.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * @title: 教职工基本信息管理
  7. * @Author 管理员
  8. * @Date: 2023-08-08
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class UpdateBaseTeacherEducationDto implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 主键
  16. */
  17. @ApiModelProperty("主键")
  18. private Long id;
  19. /**
  20. * 用户ID(xjr_user)
  21. */
  22. @ApiModelProperty("用户ID(xjr_user)")
  23. private Long userId;
  24. /**
  25. * 所学专业
  26. */
  27. @ApiModelProperty("所学专业")
  28. private String specialty;
  29. /**
  30. * 最高学历(xjr_dictionary_item[education])
  31. */
  32. @ApiModelProperty("最高学历(xjr_dictionary_item[education])")
  33. private String education;
  34. /**
  35. * 获得最高学历的院校
  36. */
  37. @ApiModelProperty("获得最高学历的院校")
  38. private String educationCollege;
  39. /**
  40. * 最高学位(xjr_dictionary_item[degree])
  41. */
  42. @ApiModelProperty("最高学位(xjr_dictionary_item[degree])")
  43. private String degree;
  44. /**
  45. * 获得最高学位的院校
  46. */
  47. @ApiModelProperty("获得最高学位的院校")
  48. private String degreeCollege;
  49. }