From ae265295dd977b0d64309b0471e8d3b0d626ccf3 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期三, 18 十二月 2024 19:03:02 +0800 Subject: [PATCH] 运输管理接口 --- medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordVO.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordVO.java b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordVO.java index 75d3534..8883818 100644 --- a/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordVO.java +++ b/medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordVO.java @@ -23,6 +23,7 @@ private Long id; @ApiModelProperty("出库时间") + @ExcelProperty(value = "出库时间", index = 1) private Date checkoutTime; @ApiModelProperty("区域id") @@ -33,24 +34,31 @@ private String hospitalName; @ApiModelProperty("暂存间名称") + @ExcelProperty(value = "暂存间", index = 3) private String roomName; @ApiModelProperty("箱数") + @ExcelProperty(value = "箱数", index = 4) private Integer boxNum; @ApiModelProperty("袋数") + @ExcelProperty(value = "袋数", index = 5) private Integer bagNum; @ApiModelProperty("总重量") + @ExcelProperty(value = "总重量", index = 6) private BigDecimal totalWeight; @ApiModelProperty("医院签名") + @ExcelProperty(value = "医院签名", index = 7) private String hospitalSignature; @ApiModelProperty("司机姓名") + @ExcelProperty(value = "司机姓名", index = 8) private String driverName; @ApiModelProperty("车牌号") + @ExcelProperty(value = "车牌号", index = 9) private String licensePlateNumber; @ApiModelProperty("转运线路") -- Gitblit v1.7.1