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;
|
}
|