李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
package com.chinaztt.mes.production.dto.mould;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @Description:
 * @Author: shz
 * @Date: 2022/6/1 15:13
 */
@Data
public class InsertLifeDTO {
    @ApiModelProperty(value = "模具编号")
    private String mouldCode;
 
    @ApiModelProperty(value = "流水号")
    private String serialNumber;
 
    @ApiModelProperty(value = "工序")
    private String procedureNumber;
 
    @ApiModelProperty(value = "机台")
    private String machineNumber;
 
    @ApiModelProperty(value = "寿命变化值,默认扣除,撤销传0")
    private BigDecimal lifeValue;
 
    @ApiModelProperty(value = "产品规格")
    private String ProductSpec;
 
    @ApiModelProperty(value = "盘号")
    private String plateNumber;
 
    @ApiModelProperty(value = "生产日期")
    private String ProductionDate;
 
    @ApiModelProperty(value = "制造人")
    private String BuildMaker;
 
    @ApiModelProperty(value = "机构名称")
    private String groupName = "中天射频";
}