AllStuClaimExportQueryVo.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package com.xjrsoft.module.textbook.vo;
  2. import com.alibaba.excel.annotation.ExcelIgnore;
  3. import com.alibaba.excel.annotation.ExcelProperty;
  4. import com.alibaba.excel.annotation.write.style.ContentStyle;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. @Data
  8. public class AllStuClaimExportQueryVo {
  9. @ContentStyle(dataFormat = 49)
  10. @ExcelProperty("学期")
  11. @ApiModelProperty("学期ID(base_semester)")
  12. private String baseSemesterIdCn;
  13. @ContentStyle(dataFormat = 49)
  14. @ExcelIgnore
  15. @ApiModelProperty("申领类型(xjr_dictionary_item[claim_type])")
  16. private String claimType;
  17. @ContentStyle(dataFormat = 49)
  18. @ExcelProperty("申领类型")
  19. @ApiModelProperty("申领类型(xjr_dictionary_item[claim_type])")
  20. private String claimTypeCn;
  21. @ContentStyle(dataFormat = 49)
  22. @ExcelProperty("领取人")
  23. @ApiModelProperty("领取人")
  24. private String receiver;
  25. @ContentStyle(dataFormat = 49)
  26. @ExcelIgnore
  27. @ApiModelProperty("申请人")
  28. private String applicantUserIdCn;
  29. @ContentStyle(dataFormat = 49)
  30. @ExcelProperty("班级名称")
  31. @ApiModelProperty("班级名称")
  32. private String classIdCn;
  33. @ContentStyle(dataFormat = 49)
  34. @ExcelProperty("申请数量")
  35. @ApiModelProperty("申请总数量")
  36. private Integer applicantTatolNumber;
  37. @ContentStyle(dataFormat = 49)
  38. @ExcelIgnore
  39. @ApiModelProperty("状态()")
  40. private Integer status;
  41. @ContentStyle(dataFormat = 49)
  42. @ExcelProperty("发放状态")
  43. @ApiModelProperty("状态()")
  44. private String statusStr;
  45. @ContentStyle(dataFormat = 49)
  46. @ExcelProperty("发放数量")
  47. @ApiModelProperty("已经发放总数量")
  48. private Integer issueTatolNumber;
  49. @ContentStyle(dataFormat = 49)
  50. @ExcelProperty("教材名称")
  51. @ApiModelProperty("教材名称")
  52. private String textbookIdCN;
  53. @ContentStyle(dataFormat = 49)
  54. @ExcelProperty("国际标准刊号")
  55. @ApiModelProperty("国际标准刊号")
  56. private String issn;
  57. @ContentStyle(dataFormat = 49)
  58. @ExcelProperty("申请数量")
  59. @ApiModelProperty("申请数量")
  60. private Integer applicantNumber;
  61. @ContentStyle(dataFormat = 49)
  62. @ExcelProperty("已发放数量")
  63. @ApiModelProperty("已发放数量")
  64. private Integer issueNumber;
  65. @ContentStyle(dataFormat = 49)
  66. @ExcelProperty("出库时间")
  67. @ApiModelProperty("出库时间")
  68. private String issueDate;
  69. @ContentStyle(dataFormat = 49)
  70. @ExcelProperty("出库人员")
  71. @ApiModelProperty("出库人员")
  72. private String issueUser;
  73. @ContentStyle(dataFormat = 49)
  74. @ExcelProperty("出库单号")
  75. @ApiModelProperty("出库单号(标识+当前时间(YYYYMMDDHHmmss)+三位序号+当前申领项出库次数(-n))")
  76. private String orderNumber;
  77. @ContentStyle(dataFormat = 49)
  78. @ExcelProperty("单次出库数量")
  79. @ApiModelProperty("单次出库数量")
  80. private Integer onceIssueNumber;
  81. }