邱宇豪
2023-11-03 bd74616204baf4e3f8bb124f142a07be8e5e9f13
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
package com.thhy.mobile.modules.biz.pipeinfo.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.io.Serializable;
@Data
public class SteelProduceThing implements Serializable {
    //钢筋编号
    private String produceNumber;
    //项目名称
    private String proName;
    //尺寸
    private String sizeName;
    //配筋
    private String reinforcementName;
    //块号
    private String blockName;
    //制作人
    private String realName;
    //质检人
    private String qualityUserName;
    //质检时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String qualityTime;
    //打印时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String printTime;
    //质检结果 :  是否合格1合格2 不合格3报废
    private Integer isQualified;
 
 
 
 
 
 
 
}