zss
2023-07-27 0e1722e96e5483d560eda8f1cf96282955d4f224
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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;
 
 
 
 
}