guoyujie
2025-04-27 c67072a987317441f2212bb9bdc5529b4e505530
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
package com.example.erp.dto.otherSystem;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.util.List;
 
@Data
@TableName("pp.optimize_project")
public class OptimizeProject {
    @TableId(type = IdType.AUTO)
    private Long id;
    //工程号
    @NotNull(message = "This field cannot be null")
    @TableField("project_no")
    private String  engineerId;
    //工程名称
    @TableField("project_name")
    private String engineerName;
    //平均利用率
    @TableField("avg_cut_pct")
    private Double avgAvailability;
    //有效利用率
    @TableField("valid_cut_pct")
    private Double validAvailability;
    //尾片利用率
    @TableField("last_cut_pct")
    private Double lastAvailability;
    //小片总数
    @NotNull(message = "This field cannot be null")
    @TableField("glass_total")
    private Integer glassTotal;
    //小片总面积
    @TableField("glass_total_area")
    private Double glassTotalArea;
    //计划原片总数
    @TableField("frist_stock_qty")
    private Integer planPatternTotal;
    //计划原片总面积
    @TableField(select = false,exist = false)
    private Double planPatternTotalArea;
    //实际原片总数
    @TableField("raw_stock_qty")
    private Integer realityPatternTotal;
    //实际原片总面积
    @TableField("raw_stock_area")
    private Double realityPatternTotalArea;
    //膜系id
    @TableField("glass_type")
    private String filmsId;
    @NotNull(message = "This field cannot be null")
    private Integer type;//补单0,正常1
 
    @TableField("glass_thickness")
    @NotNull(message = "This field cannot be null")
    private Double thickness;
    private String state;
 
    //原片使用
    @TableField(select = false,exist = false)
    private List<UpPattenList> upPattenList;
 
    //第三方流程卡表
    @TableField(select = false,exist = false)
    private List<FlowCardList> flowCardList;
 
    //优化小片明细
    @TableField(select = false,exist = false)
    private List<GlassDetailList> glassDetailList;
}