zss
2025-03-11 eeb8d7faa8d25b3ca9fe75ef28f035c49af5b06d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
 
}