WfTextbookSubscriptionPageVo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 Date createDate;
  36. /**
  37. * 申请人
  38. */
  39. @ContentStyle(dataFormat = 49)
  40. @ExcelProperty("申请人")
  41. @ApiModelProperty("申请人")
  42. private Long applicantUserId;
  43. /**
  44. * 所在部门编号
  45. */
  46. @ContentStyle(dataFormat = 49)
  47. @ExcelProperty("所在部门编号")
  48. @ApiModelProperty("所在部门编号")
  49. private Long deptId;
  50. /**
  51. * 学期ID(base_semester)
  52. */
  53. @ContentStyle(dataFormat = 49)
  54. @ExcelProperty("学期ID(base_semester)")
  55. @ApiModelProperty("学期ID(base_semester)")
  56. private Long baseSemesterId;
  57. /**
  58. * 学期ID(base_semester)
  59. */
  60. @ContentStyle(dataFormat = 49)
  61. @ExcelProperty("学期ID(base_semester)")
  62. @ApiModelProperty("学期ID(base_semester)")
  63. private String baseSemesterIdCn;
  64. /**
  65. * 状态(1:结束 0:未结束)
  66. */
  67. @ContentStyle(dataFormat = 49)
  68. @ExcelProperty("状态(1:待发起 2:征订中 3:待入库 4:已入库)")
  69. @ApiModelProperty("状态(1:待发起 2:征订中 3:待入库 4:已入库)")
  70. private Integer status;
  71. /**
  72. * 征订方式(1:结束 2:未结束)
  73. */
  74. @ApiModelProperty("征订方式(1:按班级征订 2:按教材征订)")
  75. private Integer subscriptionMethod;
  76. /**
  77. * 备注
  78. */
  79. @ApiModelProperty("备注")
  80. private String remark;
  81. private Integer sum;
  82. }