WfTextbookSubscriptionPageVo.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. package com.xjrsoft.module.textbook.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 szs
  17. * @Date: 2024-06-04
  18. * @Version 1.0
  19. */
  20. @Data
  21. public class WfTextbookSubscriptionPageVo {
  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 Long applicantUserId;
  85. /**
  86. * 所在部门编号
  87. */
  88. @ContentStyle(dataFormat = 49)
  89. @ExcelProperty("所在部门编号")
  90. @ApiModelProperty("所在部门编号")
  91. private Long deptId;
  92. /**
  93. * 学期ID(base_semester)
  94. */
  95. @ContentStyle(dataFormat = 49)
  96. @ExcelProperty("学期ID(base_semester)")
  97. @ApiModelProperty("学期ID(base_semester)")
  98. private Long baseSemesterId;
  99. /**
  100. * 学期ID(base_semester)
  101. */
  102. @ContentStyle(dataFormat = 49)
  103. @ExcelProperty("学期ID(base_semester)")
  104. @ApiModelProperty("学期ID(base_semester)")
  105. private String baseSemesterIdCn;
  106. /**
  107. * 学科组管理编号(subject_group)
  108. */
  109. @ContentStyle(dataFormat = 49)
  110. @ExcelProperty("学科组管理编号(subject_group)")
  111. @ApiModelProperty("学科组管理编号(subject_group)")
  112. private Long subjectGroupId;
  113. /**
  114. * 备注
  115. */
  116. @ContentStyle(dataFormat = 49)
  117. @ExcelProperty("备注")
  118. @ApiModelProperty("备注")
  119. private String remark;
  120. /**
  121. * 状态(1:结束 0:未结束)
  122. */
  123. @ContentStyle(dataFormat = 49)
  124. @ExcelProperty("状态(1:待发起 2:征订中 3:待入库 4:已入库)")
  125. @ApiModelProperty("状态(1:待发起 2:征订中 3:待入库 4:已入库)")
  126. private Integer status;
  127. /**
  128. * 征订方式(1:结束 2:未结束)
  129. */
  130. @ApiModelProperty("征订方式(1:按班级征订 2:按教材征订)")
  131. private Integer subscriptionMethod;
  132. private Integer sum;
  133. }