WfSubscriptionPageVo.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.xjrsoft.module.ledger.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.annotation.write.style.ContentStyle;
  4. import com.xjrsoft.module.system.entity.File;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Data;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * @title: 物品申购分页列表出参
  11. * @Author dzx
  12. * @Date: 2024-02-19
  13. * @Version 1.0
  14. */
  15. @Data
  16. public class WfSubscriptionPageVo {
  17. @ContentStyle(dataFormat = 49)
  18. @ExcelProperty("主键编号")
  19. @ApiModelProperty("主键编号")
  20. private String id;
  21. /**
  22. * 申请部门
  23. */
  24. @ContentStyle(dataFormat = 49)
  25. @ExcelProperty("申请部门")
  26. @ApiModelProperty("申请部门")
  27. private String orgName;
  28. /**
  29. * 申请日期
  30. */
  31. @ContentStyle(dataFormat = 49)
  32. @ExcelProperty("申请日期")
  33. @ApiModelProperty("申请日期")
  34. private Date shenQingRiQi4752;
  35. /**
  36. * 申请人
  37. */
  38. @ContentStyle(dataFormat = 49)
  39. @ExcelProperty("申请人")
  40. @ApiModelProperty("申请人")
  41. private String userName;
  42. /**
  43. * 附件
  44. */
  45. @ContentStyle(dataFormat = 49)
  46. @ExcelProperty("附件")
  47. @ApiModelProperty("附件")
  48. private String folderId;
  49. @ApiModelProperty("附件列表")
  50. private List<File> fileInfos;
  51. /**
  52. * 申请人
  53. */
  54. @ContentStyle(dataFormat = 49)
  55. @ExcelProperty("编号")
  56. @ApiModelProperty("编号")
  57. private String number;
  58. @ContentStyle(dataFormat = 49)
  59. @ExcelProperty("流程名称")
  60. @ApiModelProperty("流程名称")
  61. private String flowName;
  62. }