zss
2023-07-26 f330903e12d38af89d61f16c96856924d241a0f2
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
package com.yuanchu.limslaboratory.pojo.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.io.Serializable;
import java.time.LocalDateTime;
 
public class InspectionRecordsDto implements Serializable {
 
    //检测项目
    @JsonSerialize
    private String name;
 
    //试验员
    @JsonSerialize
    private String userName;
 
    //试验开始日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime startTime;
 
    //试验结束日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime endTime;
 
    //试验方法
    @JsonSerialize
    private String method;
 
    //试验要求
    @JsonSerialize
    private String ask;
 
    //样品编号
    @JsonSerialize
    private int mid;
 
    //样品名称
    @JsonSerialize
    private String materialName;
 
    //规格型号
    @JsonSerialize
    private String specificationsSerialNumber;
 
    //样品数量
    @JsonSerialize
    private Integer materialNum;
}