MaterialTaskExcelVo.java 848 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.xjrsoft.module.material.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. /**
  6. * @title: 材料提交任务分页列表出参
  7. * @Author baicai
  8. * @Date: 2023-10-31
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class MaterialTaskExcelVo {
  13. @ExcelProperty("序号")
  14. private Integer sortCode;
  15. @ExcelProperty("延迟提交")
  16. private String name;
  17. @ExcelProperty("学号/工号")
  18. @ApiModelProperty("学号/工号")
  19. private String userNumber;
  20. @ExcelProperty("身份")
  21. @ApiModelProperty("用户类型 1=孝职工 2=学生")
  22. private String userType;
  23. @ExcelProperty("部门")
  24. private String deptName;
  25. @ExcelProperty("状态")
  26. @ApiModelProperty("状态 1=未提交 2=待审核 3=通过 4=重做")
  27. private String status;
  28. }