zss
2023-08-29 6236d3f2ade69cfea844b1cfdd7622909dd42026
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
package com.yuanchu.limslaboratory.pojo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.sql.Date;
 
/**
 * @Author 张宾
 * @Date 2023/8/9
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class NonConformingFeedback  implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    private Integer id;
 
    /**
     * 样品编号
     */
    private String materialCode;
 
    /**
     * 样品名称
     */
    private String materialName;
 
    /**
     * 申请单号
     */
    private String inspectionCode;
 
    /**
     * 登记日期
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date createTime;
 
    /**
     * 实验负责人
     */
    private String testManager;
 
    /**
     * 规格型号
     */
    private String specifications;
 
    /**
     * 结论0:不合格 ; 1:合格
     */
    private Integer result;
}