李旭东
2023-12-08 7efc6ed86025b610cab109a2e9f83362740d8ed4
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
package com.thhy.mobile.modules.biz.pipeinfo.entity;
 
import com.thhy.general.annotations.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
public class PipeListVo implements Serializable {
 
    private String pipeId;
 
    @Excel(title = "序号",sort = 1,seq = true)
    private String seq;
 
    @Excel(title = "环号",sort = 2)
    private String ringNum;
 
    @Excel(title = "管片编号",sort = 3)
    private String PipeNum;
 
    @Excel(title = "转向",sort = 4)
    private String turnName;
 
    @Excel(title = "配筋",sort = 5)
    private String reinforcementName;
 
    @Excel(title = "注浆孔",sort = 6)
    private String groutingHolesName;
 
    @Excel(title = "块号",sort = 7)
    private String blockNumName;
 
    private String sizeName;
 
    @Excel(title = "模具型号",sort = 8)
    private String mouldNum;
 
    @Excel(title = "入模时间",sort=9)
    private String intoModTime;
 
    @Excel(title = "浇筑时间",sort=10)
    private String pouringTime;
 
    @Excel(title = "质检时间",sort=11,patter = "yyyy-MM-dd HH:mm:ss")
    private Date checkTime;
 
    @Excel(title = "生产班组",sort=12)
    private String groupName;
 
    @Excel(title = "项目",sort=13)
    private String proName;
 
    private Integer checkResult;
 
    @Excel(title = "质量标注",sort = 14,dict = true)
    public String checkResultStr;
 
    //检查人
    private String checkName;
    //模具id
    private String modId;
    //钢筋笼号
    private String produceNumber;
    //入模人员
    private String intoModUser;
    public String getCheckResultStr() {
        return checkResult==1?"合格":checkResult==2?"不合格":checkResult==0?"未质检":"报废";
    }
 
    private ModIdlThing modIdlThing;
 
    private SteelProduceThing steelProduceThing;
 
}