mitao
2025-03-28 b44b174f656aac1fe03e7f96851e564c3982f67d
medicalWaste-system/src/main/java/com/sinata/system/domain/vo/MwCheckoutRecordExcelVO.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;
@@ -20,38 +21,39 @@
    private static final long serialVersionUID = -851971023455890457L;
    @ApiModelProperty("记录id")
    @ExcelIgnore
    private Long id;
    @ExcelProperty(value = "转运时间", index = 1)
    @ExcelProperty(value = "转运时间", index = 0)
    private Date checkoutTime;
    @ApiModelProperty("医院名称")
    @ExcelProperty(value = "医院名称", index = 2)
    @ExcelProperty(value = "医院名称", index = 1)
    private String hospitalName;
    @ApiModelProperty("箱数")
    @ExcelProperty(value = "箱数", index = 3)
    @ExcelProperty(value = "箱数", index = 2)
    private Integer boxNum;
    @ApiModelProperty("袋数")
    @ExcelProperty(value = "袋数", index = 4)
    @ExcelProperty(value = "袋数", index = 3)
    private Integer bagNum;
    @ApiModelProperty("总重量")
    @ExcelProperty(value = "重量", index = 5)
    @ExcelProperty(value = "重量", index = 4)
    private BigDecimal totalWeight;
    @ApiModelProperty("司机姓名")
    @ExcelProperty(value = "司机姓名", index = 6)
    @ExcelProperty(value = "司机姓名", index = 5)
    private String driverName;
    @ApiModelProperty("车牌号")
    @ExcelProperty(value = "车牌号", index = 7)
    @ExcelProperty(value = "车牌号", index = 6)
    private String licensePlateNumber;
    @ApiModelProperty("转运线路")
    @ExcelProperty(value = "转运路线", index = 8)
    @ExcelProperty(value = "转运路线", index = 7)
    private String routeName;
}