BaseStudentInfoPageVo.java 1.2 KB

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