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
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
package com.ruoyi.inspect.dto;
 
import lombok.Data;
 
@Data
public class TasksShowDto {
 
    /**
     * 委托单号
     */
    private String entrustCode;
 
    /**
     * 样品名称
     */
    private String sample;
 
    /**
     * 委托单位
     */
    private String company;
 
    /**
     * 委托时间
     */
    private String createTime;
 
    /**
     * 测试
     */
    private String state;
 
 
    /**
     * 复核
     */
    private String insState;
 
    /**
     * 报告
     */
    private String code;
 
    /**
     * 审核
     */
    private String isExamine;
 
    /**
     * 批准
     */
    private String isRatify;
 
 
    /**
     * 检测人
     */
    private String name;
 
    /**
     * 紧急程度
     */
    private String type;
 
 
}