BaseStudentPostPageVo.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package com.xjrsoft.module.student.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.annotation.ExcelIgnore;
  4. import com.alibaba.excel.annotation.write.style.ContentStyle;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import lombok.Data;
  8. import com.xjrsoft.common.annotation.Trans;
  9. import com.xjrsoft.common.enums.TransType;
  10. import java.time.LocalTime;
  11. import java.time.LocalDateTime;
  12. import java.math.BigDecimal;
  13. import java.util.Date;
  14. /**
  15. * @title: 学生职务设置分页列表出参
  16. * @Author dzx
  17. * @Date: 2023-11-13
  18. * @Version 1.0
  19. */
  20. @Data
  21. public class BaseStudentPostPageVo {
  22. /**
  23. * 主键编号
  24. */
  25. @ContentStyle(dataFormat = 49)
  26. @ExcelProperty("主键编号")
  27. @ApiModelProperty("主键编号")
  28. private String id;
  29. /**
  30. * 创建人
  31. */
  32. @ContentStyle(dataFormat = 49)
  33. @ExcelProperty("创建人")
  34. @ApiModelProperty("创建人")
  35. private Long createUserId;
  36. /**
  37. * 创建时间
  38. */
  39. @ContentStyle(dataFormat = 49)
  40. @ExcelProperty("创建时间")
  41. @ApiModelProperty("创建时间")
  42. private Date createDate;
  43. /**
  44. * 修改人
  45. */
  46. @ContentStyle(dataFormat = 49)
  47. @ExcelProperty("修改人")
  48. @ApiModelProperty("修改人")
  49. private Long modifyUserId;
  50. /**
  51. * 修改时间
  52. */
  53. @ContentStyle(dataFormat = 49)
  54. @ExcelProperty("修改时间")
  55. @ApiModelProperty("修改时间")
  56. private Date modifyDate;
  57. /**
  58. * 删除标记
  59. */
  60. @ContentStyle(dataFormat = 49)
  61. @ExcelProperty("删除标记")
  62. @ApiModelProperty("删除标记")
  63. private Integer deleteMark;
  64. /**
  65. * 有效标志
  66. */
  67. @ContentStyle(dataFormat = 49)
  68. @ExcelProperty("有效标志")
  69. @ApiModelProperty("有效标志")
  70. private Integer enabledMark;
  71. /**
  72. * 序号
  73. */
  74. @ContentStyle(dataFormat = 49)
  75. @ExcelProperty("序号")
  76. @ApiModelProperty("序号")
  77. private Integer sortCode;
  78. /**
  79. * 职务
  80. */
  81. @ContentStyle(dataFormat = 49)
  82. @ExcelProperty("职务")
  83. @ApiModelProperty("职务")
  84. private String post;
  85. /**
  86. * 职务级别
  87. */
  88. @ContentStyle(dataFormat = 49)
  89. @ExcelProperty("职务级别")
  90. @ApiModelProperty("职务级别")
  91. private String level;
  92. /**
  93. * 职务级别
  94. */
  95. @ContentStyle(dataFormat = 49)
  96. @ExcelProperty("职务级别中文")
  97. @ApiModelProperty("职务级别中文")
  98. private String levelCn;
  99. /**
  100. * 是否允许德育检查(1:是 0:否)
  101. */
  102. @ContentStyle(dataFormat = 49)
  103. @ExcelProperty("是否允许德育检查(1:是 0:否)")
  104. @ApiModelProperty("是否允许德育检查(1:是 0:否)")
  105. private Integer isAllowedCheck;
  106. /**
  107. * 职责描述
  108. */
  109. @ContentStyle(dataFormat = 49)
  110. @ExcelProperty("职责描述")
  111. @ApiModelProperty("职责描述")
  112. private String explains;
  113. /**
  114. * 是否启用(1:是 0:否)
  115. */
  116. @ContentStyle(dataFormat = 49)
  117. @ExcelProperty("是否启用(1:是 0:否)")
  118. @ApiModelProperty("是否启用(1:是 0:否)")
  119. private Integer status;
  120. }