From 7a995618d41cc70ddd956a708c91a1a7244b632e Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期二, 10 十二月 2024 18:14:28 +0800
Subject: [PATCH] 医废管理-导出

---
 medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCollectRecordVO.java |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCollectRecordVO.java b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCollectRecordVO.java
index 5fc2822..5135990 100644
--- a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCollectRecordVO.java
+++ b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCollectRecordVO.java
@@ -1,5 +1,6 @@
 package com.sinata.system.domain.vo;
 
+import com.alibaba.excel.annotation.ExcelProperty;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
@@ -22,27 +23,32 @@
     private Long departmentId;
 
     @ApiModelProperty("医院名称")
+    @ExcelProperty(value = "医院", index = 2)
     private String hospitalName;
 
     @ApiModelProperty("暂存间id")
     private Long stagingRoomId;
 
     @ApiModelProperty("医废编号")
+    @ExcelProperty(value = "医废编号", index = 3)
     private String medicalWasteNumber;
 
     @ApiModelProperty("转运箱id")
     private Long boxId;
 
     @ApiModelProperty("箱子编号")
+    @ExcelProperty(value = "箱子编号", index = 4)
     private String boxNumber;
 
     @ApiModelProperty("医废类型(数据字典id)")
     private Integer wasteType;
 
     @ApiModelProperty("医废类型名称")
+    @ExcelProperty(value = "医废类型", index = 5)
     private String wasteTypeStr;
 
     @ApiModelProperty("医废重量")
+    @ExcelProperty(value = "医废重量", index = 6)
     private BigDecimal weight;
 
     @ApiModelProperty("出库人员id")
@@ -55,6 +61,7 @@
     private Date checkoutTime;
 
     @ApiModelProperty("医废状态 1:暂存中 2:运输中 3:已接收 4:已处置")
+    @ExcelProperty(value = "医废状态", index = 8)
     private Integer status;
 
     @ApiModelProperty("封箱时间")
@@ -64,8 +71,10 @@
     private Long collectUserId;
 
     @ApiModelProperty("收集人姓名")
+    @ExcelProperty(value = "收集人", index = 7)
     private Long collectUserName;
 
     @ApiModelProperty("收集时间")
+    @ExcelProperty(value = "收集时间", index = 1)
     private Date collectTime;
 }

--
Gitblit v1.7.1