WfAssetManageInventoryPageVo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.xjrsoft.module.asset.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-04-07
  11. * @Version 1.0
  12. */
  13. @Data
  14. public class WfAssetManageInventoryPageVo {
  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 Long createUserId;
  29. /**
  30. *
  31. */
  32. @ContentStyle(dataFormat = 49)
  33. @ExcelProperty("")
  34. @ApiModelProperty("")
  35. private Date createDate;
  36. /**
  37. *
  38. */
  39. @ContentStyle(dataFormat = 49)
  40. @ExcelProperty("")
  41. @ApiModelProperty("")
  42. private Long modifyUserId;
  43. /**
  44. *
  45. */
  46. @ContentStyle(dataFormat = 49)
  47. @ExcelProperty("")
  48. @ApiModelProperty("")
  49. private Date modifyDate;
  50. /**
  51. *
  52. */
  53. @ContentStyle(dataFormat = 49)
  54. @ExcelProperty("")
  55. @ApiModelProperty("")
  56. private Integer deleteMark;
  57. /**
  58. *
  59. */
  60. @ContentStyle(dataFormat = 49)
  61. @ExcelProperty("")
  62. @ApiModelProperty("")
  63. private Integer enabledMark;
  64. /**
  65. * 状态(0:未结束 1:结束)
  66. */
  67. @ContentStyle(dataFormat = 49)
  68. @ExcelProperty("状态(0:未结束 1:结束)")
  69. @ApiModelProperty("状态(0:未结束 1:结束)")
  70. private Short status;
  71. /**
  72. * 区域类型
  73. */
  74. @ContentStyle(dataFormat = 49)
  75. @ExcelProperty("区域类型")
  76. @ApiModelProperty("区域类型")
  77. private String areaType;
  78. /**
  79. * 附件id
  80. */
  81. @ContentStyle(dataFormat = 49)
  82. @ExcelProperty("附件id")
  83. @ApiModelProperty("附件id")
  84. private Long folderId;
  85. /**
  86. * 楼栋id
  87. */
  88. @ContentStyle(dataFormat = 49)
  89. @ExcelProperty("楼栋id")
  90. @ApiModelProperty("楼栋id")
  91. private Long baseOfficeBuildId;
  92. /**
  93. * 楼层
  94. */
  95. @ContentStyle(dataFormat = 49)
  96. @ExcelProperty("楼层")
  97. @ApiModelProperty("楼层")
  98. private Integer floorNumber;
  99. /**
  100. * 门牌号
  101. */
  102. @ContentStyle(dataFormat = 49)
  103. @ExcelProperty("门牌号")
  104. @ApiModelProperty("门牌号")
  105. private String roomNumber;
  106. }