From d89a42213b4a32535e93185dedf41fe7a7fc1940 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 04 四月 2025 01:57:13 +0800
Subject: [PATCH] bug修改

---
 medicalWaste-system/src/main/java/com/sinata/system/domain/excel/MwCheckoutRecordExcel.java |   21 ++++++++++-----------
 1 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/medicalWaste-system/src/main/java/com/sinata/system/domain/excel/MwCheckoutRecordExcel.java b/medicalWaste-system/src/main/java/com/sinata/system/domain/excel/MwCheckoutRecordExcel.java
index 08c4f68..4ff01c2 100644
--- a/medicalWaste-system/src/main/java/com/sinata/system/domain/excel/MwCheckoutRecordExcel.java
+++ b/medicalWaste-system/src/main/java/com/sinata/system/domain/excel/MwCheckoutRecordExcel.java
@@ -6,7 +6,6 @@
 import lombok.Data;
 
 import java.math.BigDecimal;
-import java.net.URL;
 import java.util.Date;
 
 /**
@@ -17,31 +16,31 @@
 public class MwCheckoutRecordExcel {
     
     @ApiModelProperty("出库时间")
-    @ExcelProperty(value = "出库时间", index = 1)
+    @ExcelProperty(value = "出库时间", index = 0)
     private Date checkoutTime;
 
-    @ExcelProperty(value = "医院", index = 2)
+    @ExcelProperty(value = "医院", index = 1)
     private String hospitalName;
 
-    @ExcelProperty(value = "暂存间", index = 3)
+    @ExcelProperty(value = "暂存间", index = 2)
     private String roomName;
 
-    @ExcelProperty(value = "箱数", index = 4)
+    @ExcelProperty(value = "箱数", index = 3)
     private Integer boxNum;
 
-    @ExcelProperty(value = "袋数", index = 5)
+    @ExcelProperty(value = "袋数", index = 4)
     private Integer bagNum;
 
-    @ExcelProperty(value = "总重量", index = 6)
+    @ExcelProperty(value = "医废重量(kg)", index = 5)
     private BigDecimal totalWeight;
 
-    @ExcelProperty(value = "医院签名", index = 7)
-    private URL hospitalSignature;
+    @ExcelProperty(value = "医院签名", index = 6)
+    private byte[] hospitalSignature;
 
-    @ExcelProperty(value = "司机姓名", index = 8)
+    @ExcelProperty(value = "司机姓名", index = 7)
     private String driverName;
 
-    @ExcelProperty(value = "车牌号", index = 9)
+    @ExcelProperty(value = "车牌号", index = 8)
     private String licensePlateNumber;
 
     @ApiModelProperty("记录id")

--
Gitblit v1.7.1