LanguageCompetenceImportVo.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.xjrsoft.module.teacher.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.annotation.write.style.ContentStyle;
  4. import com.xjrsoft.common.annotation.Required;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. import java.util.Date;
  8. /**
  9. * @title: 语言能力信息分页列表出参
  10. * @Author szs
  11. * @Date: 2025-04-24
  12. * @Version 1.0
  13. */
  14. @Data
  15. public class LanguageCompetenceImportVo {
  16. /**
  17. * 教职工姓名
  18. */
  19. @ContentStyle(dataFormat = 49)
  20. @ExcelProperty("教师")
  21. @ApiModelProperty("教师")
  22. @Required
  23. private String userIdCn;
  24. /**
  25. * 工号
  26. */
  27. @ContentStyle(dataFormat = 49)
  28. @ExcelProperty("工号")
  29. @ApiModelProperty("工号")
  30. @Required
  31. private String userName;
  32. /**
  33. * 语言种类
  34. */
  35. @ContentStyle(dataFormat = 49)
  36. @ExcelProperty("语言种类")
  37. @ApiModelProperty("语言种类")
  38. @Required
  39. private String name;
  40. /**
  41. * 等级
  42. */
  43. @ContentStyle(dataFormat = 49)
  44. @ExcelProperty("等级")
  45. @ApiModelProperty("等级")
  46. @Required
  47. private String level;
  48. /**
  49. * 证书编号
  50. */
  51. @ContentStyle(dataFormat = 49)
  52. @ExcelProperty("证书编号")
  53. @ApiModelProperty("证书编号")
  54. @Required
  55. private String certificationNo;
  56. /**
  57. * 测试机构
  58. */
  59. @ContentStyle(dataFormat = 49)
  60. @ExcelProperty("测试机构")
  61. @ApiModelProperty("测试机构")
  62. private String examAuthority;
  63. /**
  64. * 发证单位
  65. */
  66. @ContentStyle(dataFormat = 49)
  67. @ExcelProperty("发证单位")
  68. @ApiModelProperty("发证单位")
  69. private String issuanceUnit;
  70. /**
  71. * 发证时间
  72. */
  73. @ContentStyle(dataFormat = 49)
  74. @ExcelProperty("发证时间")
  75. @ApiModelProperty("发证时间")
  76. private Date issuanceDate;
  77. }