OutsideAssociationsImportVo.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.time.LocalDate;
  8. import java.time.LocalDateTime;
  9. /**
  10. * @title: 校外其他协会记录分页列表出参
  11. * @Author szs
  12. * @Date: 2025-04-24
  13. * @Version 1.0
  14. */
  15. @Data
  16. public class OutsideAssociationsImportVo {
  17. /**
  18. * 教职工姓名
  19. */
  20. @ContentStyle(dataFormat = 49)
  21. @ExcelProperty("教师")
  22. @ApiModelProperty("教师")
  23. @Required
  24. private String userIdCn;
  25. /**
  26. * 工号
  27. */
  28. @ContentStyle(dataFormat = 49)
  29. @ExcelProperty("工号")
  30. @ApiModelProperty("工号")
  31. @Required
  32. private String userName;
  33. /**
  34. * 协会名称
  35. */
  36. @ContentStyle(dataFormat = 49)
  37. @ExcelProperty("协会名称")
  38. @ApiModelProperty("协会名称")
  39. @Required
  40. private String name;
  41. /**
  42. * 加入时间
  43. */
  44. @ContentStyle(dataFormat = 49)
  45. @ExcelProperty("加入时间")
  46. @ApiModelProperty("加入时间")
  47. @Required
  48. private LocalDate joinDate;
  49. /**
  50. * 退出时间
  51. */
  52. @ContentStyle(dataFormat = 49)
  53. @ExcelProperty("退出时间")
  54. @ApiModelProperty("退出时间")
  55. private LocalDate exitDate;
  56. /**
  57. * 职务
  58. */
  59. @ContentStyle(dataFormat = 49)
  60. @ExcelProperty("职务")
  61. @ApiModelProperty("职务")
  62. private String duty;
  63. /**
  64. * 说明
  65. */
  66. @ContentStyle(dataFormat = 49)
  67. @ExcelProperty("说明")
  68. @ApiModelProperty("说明")
  69. private String remark;
  70. }