package com.yuanchu.limslaboratory.pojo.dto;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
//修改样品信息
|
@Data
|
public class InspectionMaterialListDto implements Serializable {
|
|
|
/**
|
* 报检数量-物料数量
|
*/
|
@ApiModelProperty(value = "报检数量-物料数量",required = true)
|
private Integer materialNum;
|
/**
|
* 供应商
|
*/
|
@ApiModelProperty(value = "供应商",required = true)
|
private String materialSupplier;
|
/**
|
* 物料名称
|
*/
|
@ApiModelProperty(value = "物料名称",required = true)
|
private String materialName;
|
/**
|
* 物料存放地
|
*/
|
@ApiModelProperty(value = "物料存放地",required = true)
|
private String materialLocation;
|
/**
|
* 物料批次
|
*/
|
@ApiModelProperty(value = "物料批次",required = true)
|
private String materialBatch;
|
/**
|
* 物料盘号
|
*/
|
@ApiModelProperty(value = "物料盘号",required = true)
|
private String materialReelNumber;
|
/**
|
* 规格名称/型号名称
|
*/
|
@ApiModelProperty(value = "规格名称/型号名称",required = true)
|
private String specificationsSerialNumber;
|
/**
|
* 电压等级
|
*/
|
@ApiModelProperty("电压等级")
|
private String specificationsVoltageLevel;
|
/**
|
* 主线心截面
|
*/
|
@ApiModelProperty("主线心截面")
|
private String specificationsCrossSection;
|
/**
|
* 主线芯芯数
|
*/
|
@ApiModelProperty("主线芯芯数")
|
private String specificationsNumberOfCores;
|
/**
|
* 生产指令号
|
*/
|
@ApiModelProperty("生产指令号")
|
private String specificationsInstruct;
|
|
@ApiModelProperty("备注")
|
private String notes;
|
|
|
|
|
}
|