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/vo/MwStorageRecordVO.java | 19 ++++++++++--------- 1 files changed, 10 insertions(+), 9 deletions(-) diff --git a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwStorageRecordVO.java b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwStorageRecordVO.java index 9b69223..3c92164 100644 --- a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwStorageRecordVO.java +++ b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwStorageRecordVO.java @@ -26,7 +26,7 @@ private Long departmentId; @ApiModelProperty("医院名称") - @ExcelProperty(value = "医院名称", index = 2) + @ExcelProperty(value = "医院名称", index = 1) private String hospitalName; @ApiModelProperty("暂存间id") @@ -34,11 +34,11 @@ private Long stagingRoomId; @ApiModelProperty("暂存间名称") - @ExcelProperty(value = "暂存间", index = 3) + @ExcelProperty(value = "暂存间", index = 2) private String roomName; @ApiModelProperty("医废编号") - @ExcelProperty(value = "医废编号", index = 4) + @ExcelProperty(value = "医废编号", index = 3) private String medicalWasteNumber; @ApiModelProperty("转运箱id") @@ -46,7 +46,7 @@ private Long boxId; @ApiModelProperty("箱子编号") - @ExcelProperty(value = "箱子编号", index = 5) + @ExcelProperty(value = "箱子编号", index = 4) private String boxNumber; @ApiModelProperty("袋数") @@ -54,14 +54,15 @@ private Integer bagNum; @ApiModelProperty("医废类型(数据字典id)") + @ExcelIgnore private Integer wasteType; @ApiModelProperty("医废类型名称") - @ExcelProperty(value = "医废类型", index = 6) + @ExcelProperty(value = "医废类型", index = 5) private String wasteTypeStr; @ApiModelProperty("医废重量") - @ExcelProperty(value = "医废重量", index = 7) + @ExcelProperty(value = "重量(kg)", index = 6) private BigDecimal weight; @ApiModelProperty("出库人员id") @@ -77,7 +78,7 @@ private Date checkoutTime; @ApiModelProperty("医废状态 1:暂存中 2:运输中 3:已接收 4:已处置") - @ExcelProperty(value = "医废状态", index = 8) + @ExcelIgnore private Integer status; @ApiModelProperty("封箱时间") @@ -89,11 +90,11 @@ private Long collectUserId; @ApiModelProperty("入库人员") - @ExcelProperty(value = "入库人员", index = 8) + @ExcelProperty(value = "入库人员", index = 7) private String collectUserName; @ApiModelProperty("入库时间") - @ExcelProperty(value = "入库时间", index = 1) + @ExcelProperty(value = "入库时间", index = 0) private Date collectTime; } -- Gitblit v1.7.1