叶松
2023-11-27 111a401f033749c965f02f58c586a8feafd9afd1
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
package com.thhy.materials.modules.biz.rebarprint.entity.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
public class ProduceExportDto implements Serializable {
    /**
     * 钢筋编号
     */
    private String produceNumber;
    /**
     * 项目名称
     */
    private String proName;
    //尺寸
    private String sizeName;
    //配筋
    private String reinforcementName;
    //块号
    private String blockName;
    //班组
    private String groupName;
    /**
     * 质检时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String qualityTime;
    //制作人
    private String realName;
    //质检人
    private String qualityUserName;
 
 
    /**
     * 是否合格
     */
    private String isQualified;
    /**
     * 是否入模
     */
    private String isModel;
    //打印时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String printTime;
 
    private String platUserName;
 
 
}