From d0542b6f8b7ead9cea467f12d989eaabb8ec6e60 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期二, 07 一月 2025 17:06:57 +0800 Subject: [PATCH] 添加车辆运输路线记录 --- medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCollectRecordVO.java | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 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 03ca3a7..5ac3d51 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 cn.idev.excel.annotation.ExcelIgnore; import cn.idev.excel.annotation.ExcelProperty; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @@ -17,9 +18,11 @@ public class MwCollectRecordVO { @ApiModelProperty("收集记录id") + @ExcelIgnore private Long id; @ApiModelProperty("区域id") + @ExcelIgnore private Long departmentId; @ApiModelProperty("医院名称") @@ -27,6 +30,7 @@ private String hospitalName; @ApiModelProperty("暂存间id") + @ExcelIgnore private Long stagingRoomId; @ApiModelProperty("医废编号") @@ -34,6 +38,7 @@ private String medicalWasteNumber; @ApiModelProperty("转运箱id") + @ExcelIgnore private Long boxId; @ApiModelProperty("箱子编号") @@ -41,7 +46,7 @@ private String boxNumber; @ApiModelProperty("医废类型(数据字典id)") - private Integer wasteType; + private Long wasteType; @ApiModelProperty("医废类型名称") @ExcelProperty(value = "医废类型", index = 5) @@ -52,12 +57,15 @@ private BigDecimal weight; @ApiModelProperty("出库人员id") + @ExcelIgnore private Long checkoutUserId; @ApiModelProperty("出库人员姓名") + @ExcelIgnore private String checkoutUserName; @ApiModelProperty("出库时间") + @ExcelIgnore private Date checkoutTime; @ApiModelProperty("医废状态 1:暂存中 2:运输中 3:已接收 4:已处置") @@ -65,9 +73,11 @@ private Integer status; @ApiModelProperty("封箱时间") + @ExcelIgnore private Date boxTime; @ApiModelProperty("收集人id") + @ExcelIgnore private Long collectUserId; @ApiModelProperty("收集人姓名") -- Gitblit v1.7.1