| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package com.xjrsoft.module.textbook.vo;
- import com.alibaba.excel.annotation.ExcelIgnore;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- @Data
- public class AllStuClaimExportQueryVo {
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学期")
- @ApiModelProperty("学期ID(base_semester)")
- private String baseSemesterIdCn;
- @ContentStyle(dataFormat = 49)
- @ExcelIgnore
- @ApiModelProperty("申领类型(xjr_dictionary_item[claim_type])")
- private String claimType;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("申领类型")
- @ApiModelProperty("申领类型(xjr_dictionary_item[claim_type])")
- private String claimTypeCn;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("领取人")
- @ApiModelProperty("领取人")
- private String receiver;
- @ContentStyle(dataFormat = 49)
- @ExcelIgnore
- @ApiModelProperty("申请人")
- private String applicantUserIdCn;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("班级名称")
- @ApiModelProperty("班级名称")
- private String classIdCn;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("申请数量")
- @ApiModelProperty("申请总数量")
- private Integer applicantTatolNumber;
- @ContentStyle(dataFormat = 49)
- @ExcelIgnore
- @ApiModelProperty("状态()")
- private Integer status;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("发放状态")
- @ApiModelProperty("状态()")
- private String statusStr;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("发放数量")
- @ApiModelProperty("已经发放总数量")
- private Integer issueTatolNumber;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("教材名称")
- @ApiModelProperty("教材名称")
- private String textbookIdCN;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("国际标准刊号")
- @ApiModelProperty("国际标准刊号")
- private String issn;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("申请数量")
- @ApiModelProperty("申请数量")
- private Integer applicantNumber;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("已发放数量")
- @ApiModelProperty("已发放数量")
- private Integer issueNumber;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("出库时间")
- @ApiModelProperty("出库时间")
- private String issueDate;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("出库人员")
- @ApiModelProperty("出库人员")
- private String issueUser;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("出库单号")
- @ApiModelProperty("出库单号(标识+当前时间(YYYYMMDDHHmmss)+三位序号+当前申领项出库次数(-n))")
- private String orderNumber;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("单次出库数量")
- @ApiModelProperty("单次出库数量")
- private Integer onceIssueNumber;
- }
|