BaseNewStudentExcelVo.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. import java.math.BigDecimal;
  7. /**
  8. * @title: 新生维护信息分页列表出参
  9. * @Author dzx
  10. * @Date: 2024-06-27
  11. * @Version 1.0
  12. */
  13. @Data
  14. public class BaseNewStudentExcelVo {
  15. /**
  16. * 毕业学校
  17. */
  18. @ContentStyle(dataFormat = 49)
  19. @ExcelProperty("毕业学校")
  20. @ApiModelProperty("毕业学校")
  21. private String graduateSchool;
  22. /**
  23. * 学生姓名
  24. */
  25. @ContentStyle(dataFormat = 49)
  26. @ExcelProperty("学生姓名")
  27. @ApiModelProperty("学生姓名")
  28. private String name;
  29. /**
  30. * 性别
  31. */
  32. @ContentStyle(dataFormat = 49)
  33. @ExcelProperty("性别")
  34. @ApiModelProperty("性别")
  35. private String gender;
  36. /**
  37. * 身份证号
  38. */
  39. @ContentStyle(dataFormat = 49)
  40. @ExcelProperty("身份证号")
  41. @ApiModelProperty("身份证号")
  42. private String credentialNumber;
  43. /**
  44. * 身高
  45. */
  46. @ContentStyle(dataFormat = 49)
  47. @ExcelProperty("身高")
  48. @ApiModelProperty("身高")
  49. private BigDecimal height;
  50. /**
  51. * 体重
  52. */
  53. @ContentStyle(dataFormat = 49)
  54. @ExcelProperty("体重")
  55. @ApiModelProperty("体重")
  56. private BigDecimal weight;
  57. /**
  58. * 成绩
  59. */
  60. @ContentStyle(dataFormat = 49)
  61. @ExcelProperty("成绩")
  62. @ApiModelProperty("成绩")
  63. private BigDecimal score;
  64. /**
  65. * 毕业班级
  66. */
  67. @ContentStyle(dataFormat = 49)
  68. @ExcelProperty("毕业班级")
  69. @ApiModelProperty("毕业班级")
  70. private String graduateClass;
  71. /**
  72. * 学生来源
  73. */
  74. @ContentStyle(dataFormat = 49)
  75. @ExcelProperty("学生来源")
  76. @ApiModelProperty("学生来源")
  77. private String source;
  78. /**
  79. * 住宿类型
  80. */
  81. @ContentStyle(dataFormat = 49)
  82. @ExcelProperty("住宿类型")
  83. @ApiModelProperty("住宿类型")
  84. private String stduyStatus;
  85. /**
  86. * 手机号
  87. */
  88. @ContentStyle(dataFormat = 49)
  89. @ExcelProperty("手机号")
  90. @ApiModelProperty("手机号")
  91. private String mobile;
  92. @ContentStyle(dataFormat = 49)
  93. @ExcelProperty("第一志愿")
  94. @ApiModelProperty("第一志愿")
  95. private String firstAmbition;
  96. @ContentStyle(dataFormat = 49)
  97. @ExcelProperty("第二志愿")
  98. @ApiModelProperty("第二志愿")
  99. private String secondAmbition;
  100. @ContentStyle(dataFormat = 49)
  101. @ExcelProperty("家庭电话")
  102. @ApiModelProperty("是否可调配")
  103. private String isAdjust;
  104. @ContentStyle(dataFormat = 49)
  105. @ExcelProperty("家庭电话")
  106. @ApiModelProperty("家庭电话")
  107. private String familyMobile;
  108. @ContentStyle(dataFormat = 49)
  109. @ExcelProperty("家庭地址")
  110. @ApiModelProperty("家庭地址")
  111. private String familyAddress;
  112. @ContentStyle(dataFormat = 49)
  113. @ExcelProperty("错误信息")
  114. @ApiModelProperty("错误信息")
  115. private String errorMsg;
  116. }