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
package com.yuanchu.mom.vo;
 
import com.yuanchu.mom.annotation.ValueTableShow;
import com.yuanchu.mom.common.OrderBy;
import lombok.Data;
 
@Data
public class InsOrderPlanTaskSwitchVo extends OrderBy {
    private String id;
 
    @ValueTableShow(value = 1,name = "委托编号")
    private String entrustCode;
 
 
    @ValueTableShow(value = 2,name = "检验对象")
    private String sampleType;
 
    @ValueTableShow(value = 3,name = "样品编号")
    private String sampleCode;
 
    @ValueTableShow(value = 4,name = "紧急程度")
    private String type;
 
    @ValueTableShow(value = 5,name = "状态")
    private String insState;
 
    @ValueTableShow(value = 6,name = "约定时间")
    private String appointed;
 
    @ValueTableShow(value = 7,name = "下发时间")
    private String sendTime;
 
    private Integer userId;
 
    private String sonLaboratory;
    private String laboratory;
 
    private Integer orderUserId;
 
    private Integer sampleId;
 
    private Integer verifyUser;
}