package com.yuanchu.mom.pojo.vo;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotNull;
|
import java.io.Serializable;
|
|
|
@Data
|
//新增原材料检验单参数
|
public class RawInsProductVo implements Serializable {
|
|
/**
|
* 项目名称
|
**/
|
@NotBlank(message = "项目名称不能为空!")
|
@JsonSerialize
|
private String name;
|
|
/**
|
* 单位
|
**/
|
@JsonSerialize
|
private String unit;
|
|
/**
|
* 标准值
|
**/
|
@JsonSerialize
|
private String required;
|
|
/**
|
* 内控值
|
**/
|
@JsonSerialize
|
private String internal;
|
|
/**
|
* 检测值
|
*/
|
private String testValue;
|
|
/**
|
* 设备id
|
*/
|
private Integer deviceId;
|
|
}
|