WfTextbookSubscriptionPageVo.java 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package com.xjrsoft.module.textbook.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.annotation.write.style.ContentStyle;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * @title: 教材教辅征订分页列表出参
  9. * @Author szs
  10. * @Date: 2024-06-04
  11. * @Version 1.0
  12. */
  13. @Data
  14. public class WfTextbookSubscriptionPageVo {
  15. /**
  16. * 主键编号
  17. */
  18. @ContentStyle(dataFormat = 49)
  19. @ExcelProperty("主键编号")
  20. @ApiModelProperty("主键编号")
  21. private String id;
  22. /**
  23. * 创建时间
  24. */
  25. @ContentStyle(dataFormat = 49)
  26. @ExcelProperty("创建时间")
  27. @ApiModelProperty("创建时间")
  28. private Date createDate;
  29. /**
  30. * 申请人
  31. */
  32. @ContentStyle(dataFormat = 49)
  33. @ExcelProperty("申请人")
  34. @ApiModelProperty("申请人")
  35. private Long applicantUserId;
  36. /**
  37. * 所在部门编号
  38. */
  39. @ContentStyle(dataFormat = 49)
  40. @ExcelProperty("所在部门编号")
  41. @ApiModelProperty("所在部门编号")
  42. private Long deptId;
  43. /**
  44. * 学期ID(base_semester)
  45. */
  46. @ContentStyle(dataFormat = 49)
  47. @ExcelProperty("学期ID(base_semester)")
  48. @ApiModelProperty("学期ID(base_semester)")
  49. private Long baseSemesterId;
  50. /**
  51. * 学期ID(base_semester)
  52. */
  53. @ContentStyle(dataFormat = 49)
  54. @ExcelProperty("学期ID(base_semester)")
  55. @ApiModelProperty("学期ID(base_semester)")
  56. private String baseSemesterIdCn;
  57. /**
  58. * 状态(1:结束 0:未结束)
  59. */
  60. @ContentStyle(dataFormat = 49)
  61. @ExcelProperty("状态(1:待发起 2:征订中 3:待入库 4:已入库)")
  62. @ApiModelProperty("状态(1:待发起 2:征订中 3:待入库 4:已入库)")
  63. private Integer status;
  64. /**
  65. * 征订方式(1:结束 2:未结束)
  66. */
  67. @ApiModelProperty("征订方式(1:按班级征订 2:按教材征订)")
  68. private Integer subscriptionMethod;
  69. /**
  70. * 备注
  71. */
  72. @ApiModelProperty("备注")
  73. private String remark;
  74. private Integer sum;
  75. }