BaseStudentInfoPageVo.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.xjrsoft.module.student.vo;
  2. import com.alibaba.excel.annotation.write.style.ContentStyle;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. /**
  6. * @title: 移动端学生修改信息列表
  7. * @Author dzx
  8. * @Date: 2024年2月26日
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class BaseStudentInfoPageVo {
  13. @ApiModelProperty("主键编号")
  14. private Long id;
  15. @ContentStyle(dataFormat = 49)
  16. @ApiModelProperty("序号")
  17. private Integer sortCode;
  18. @ContentStyle(dataFormat = 49)
  19. @ApiModelProperty("学生姓名")
  20. private String studentName;
  21. @ContentStyle(dataFormat = 49)
  22. @ApiModelProperty("学号")
  23. private String studentId;
  24. @ContentStyle(dataFormat = 49)
  25. @ApiModelProperty("本人电话")
  26. private String phone;
  27. @ContentStyle(dataFormat = 49)
  28. @ApiModelProperty("监护人电话")
  29. private String guardianPhone;
  30. @ContentStyle(dataFormat = 49)
  31. @ApiModelProperty("班主任名称")
  32. private String teacherName;
  33. @ContentStyle(dataFormat = 49)
  34. @ApiModelProperty("班主任电话")
  35. private String teacherPhone;
  36. @ContentStyle(dataFormat = 49)
  37. @ApiModelProperty("班级名称")
  38. private String className;
  39. }