zss
2025-04-18 ec1f20c31d64ddbc5242c3942902bc5233a8a140
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.ruoyi.inspect.dto;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author zhuo
 * @Date 2025/4/18
 */
@Data
@ExcelIgnoreUnannotated
public class InsReportExport {
 
    @ExcelProperty(value = "报告编号")
    @ApiModelProperty("委托编号")
    private String code;
 
    @ExcelProperty(value = "下单类型")
    @ApiModelProperty("下单类型")
    private String typeSource;
 
    @ExcelProperty(value = "检验类型")
    @ApiModelProperty("检验类型")
    private String orderType;
 
    @ExcelProperty(value = "创建时间")
    @ApiModelProperty("创建时间")
    private String createTime;
 
    @ExcelProperty(value = "提交人")
    @ApiModelProperty("提交人")
    private String writeUserName;
 
    @ExcelProperty(value = "提交时间")
    @ApiModelProperty("提交时间")
    private String writeTime;
 
    @ExcelProperty(value = "提交状态")
    @ApiModelProperty("提交状态")
    private String state;
 
    @ExcelProperty(value = "审核人")
    @ApiModelProperty("审核人")
    private String examineUser;
 
    @ExcelProperty(value = "审核时间")
    @ApiModelProperty("审核时间")
    private String examineTime;
 
    @ExcelProperty(value = "审核状态")
    @ApiModelProperty("审核状态")
    private String isExamine;
 
    @ExcelProperty(value = "审核备注")
    @ApiModelProperty("审核备注")
    private String examineTell;
 
    @ExcelProperty(value = "批准人")
    @ApiModelProperty("批准人")
    private String ratifyUser;
 
    @ExcelProperty(value = "批准时间")
    @ApiModelProperty("批准时间")
    private String ratifyTime;
 
    @ExcelProperty(value = "批准状态")
    @ApiModelProperty("批准状态")
    private String isRatify;
 
    @ExcelProperty(value = "批准备注")
    @ApiModelProperty("批准备注")
    private String ratifyTell;
}