From ec4cb43f83fdfdab0acc7c59b84ec91fff49d3f6 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期六, 28 十二月 2024 17:38:12 +0800 Subject: [PATCH] 增加处置记录项 --- medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwMedicalWasteBoxVO.java | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwMedicalWasteBoxVO.java b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwMedicalWasteBoxVO.java index 7d7ca70..b1204a7 100644 --- a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwMedicalWasteBoxVO.java +++ b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwMedicalWasteBoxVO.java @@ -26,6 +26,9 @@ @ApiModelProperty("暂存间名称") private String roomName; + + @ApiModelProperty("医废类型") + private Long wasteType; @ApiModelProperty("医废类型名称") private String wasteTypeStr; @@ -39,7 +42,10 @@ @ApiModelProperty("重量") private BigDecimal totalWeight; - @ApiModelProperty("入库人员") + @ApiModelProperty("入库/收集人员") private String collectUserName; + @ApiModelProperty("最后封箱时间") + private Date boxTime; + } -- Gitblit v1.7.1