jiazx0107@163.com
2023-05-31 7a7ccfd74dbdff086d2aabe5117ec1dc6f804d91
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
package com.ld.igds.inout.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 出入库扦样数据封装
 *
 * @author czt
 * @date 2023-05-30 16:25
 */
@Data
public class InoutCheckData implements Serializable {
 
    private static final long serialVersionUID = 1L;
    
    //流水号
    private String id;
    
    //组织编码
    private String companyId;
 
    //库区编码
    private String deptId;
 
    //出入库类型,IN=入库,OUT=出库
    private String type;
 
    //流程进度
    private String progress;
 
    //数据状态
    private String recordStatus;
 
    //智慧卡号
    private String intelCard;
 
    //登记时间
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private Date registerTime;
 
    //登记人
    private String registerUser;
 
    //车船号
    private String plateNum;
 
    //扦样人
    private String sampleUser;
 
    //扦样时间
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
    private Date sampleTime;
 
    //扦样方式:0-人工,1=自动,2=智能随机
    private String sampleType;
 
    //质检单号
    private String checkId;
 
    //扦样状态
    private String sampleStatus;
}