BaseStudentAssessmentClassRelationVo.java 974 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.xjrsoft.module.student.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.time.LocalTime;
  5. import java.time.LocalDateTime;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. import java.util.Date;
  9. /**
  10. * @title: 学生班级巡查考核-关联班级表单出参
  11. * @Author fanxp
  12. * @Date: 2023-11-16
  13. * @Version 1.0
  14. */
  15. @Data
  16. public class BaseStudentAssessmentClassRelationVo {
  17. /**
  18. * 主键编号
  19. */
  20. @ApiModelProperty("主键编号")
  21. private Long id;
  22. /**
  23. * 班级编号id
  24. */
  25. @ApiModelProperty("班级编号id")
  26. private Long classId;
  27. /**
  28. * 学生班级巡查考核id
  29. */
  30. @ApiModelProperty("学生班级巡查考核id")
  31. private Long baseStudentAssessmentInspectionId;
  32. /**
  33. * 序号
  34. */
  35. @ApiModelProperty("序号")
  36. private Integer sortCode;
  37. /**
  38. * 班主任姓名
  39. */
  40. @ApiModelProperty("班主任姓名")
  41. private String teacherName;
  42. }