package com.ruoyi.inspect.vo; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.write.style.ColumnWidth; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ColumnWidth(25) public class UnInsProductsVO { @ExcelProperty("日期") @ApiModelProperty(value = "日期") private String sendTime; @ExcelProperty("委托单号") @ApiModelProperty(value = "委托单号") private String entrustCode; @ExcelProperty("样品名称") @ApiModelProperty(value = "样品名称") private String sample; @ExcelProperty("样品编号") @ApiModelProperty(value = "样品编号") private String sampleCode; @ExcelProperty("待检项目") @ApiModelProperty(value = "待检项目") private String unInsProduct; }