AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package org.jeecg.modules.arj.entity;
 
import com.baomidou.mybatisplus.annotation.*;
 
import java.time.LocalDateTime;
import java.util.Date;
import java.io.Serializable;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * <p>
 * 废品集罐
 * </p>
 *
 * @author hyy
 * @since 2022-11-28
 */
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="FeipinJiguan对象", description="废品集罐")
public class FeipinJiguan implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "key")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "总计")
    private int total;
    private String headId;
 
    private String suojinBlNum;
 
    @ApiModelProperty(value = "缩筋不良")
    private String suojinBl;
 
    private Integer hongkaoBsNum;
 
    @ApiModelProperty(value = "烘烤变色")
    private String hongkaoBs;
 
    private Integer huashangNum;
 
    @ApiModelProperty(value = "划伤")
    private String huashang;
 
    private Integer shiyanFpNum;
 
    @ApiModelProperty(value = "实验废品")
    private String shiyanFp;
 
    private Integer youguanNum;
 
    @ApiModelProperty(value = "油罐")
    private String youguan;
 
    private Integer zangguanNum;
 
    @ApiModelProperty(value = "脏罐")
    private String zangguan;
 
    private Integer bieguanNum;
 
    @ApiModelProperty(value = "瘪罐")
    private String bieguan;
 
    private Integer fengkouBlNum;
 
    @ApiModelProperty(value = "封口不良")
    private String fengkouBl;
 
    private Integer gunjinBlNum;
 
    @ApiModelProperty(value = "滚筋不良")
    private String gunjinBl;
 
    private Integer waituBlNum;
 
    @ApiModelProperty(value = "外涂不良")
    private String waituBl;
 
    private Integer hanjieBlNum;
 
    @ApiModelProperty(value = "焊接不良")
    private String hanjieBl;
 
 
 
    @ApiModelProperty(value = "脏盖")
    private String zanggai;
 
    private Integer zanggaiNum;
 
    @ApiModelProperty(value = "翻边不良")
    private String fanbianBl;
 
    private Integer fanbianBlNum;
 
    @ApiModelProperty(value = "剪斜")
    private String jianxie;
    private Integer jianxieNum;
    @ApiModelProperty(value = "租户号")
    @TableField("TENANT_ID")
    private String tenantId;
 
    @ApiModelProperty(value = "乐观锁")
    @TableField("REVISION")
    private String revision;
    @ApiModelProperty(value = "创建人")
    @TableField("CREATED_BY")
    private String createdBy;
 
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField(fill = FieldFill.INSERT)//
    private Date createdTime;
 
    @ApiModelProperty(value = "更新人")
    @TableField("UPDATED_BY")
 
    private String updatedBy;
 
    @ApiModelProperty(value = "更新时间")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField(fill = FieldFill.UPDATE)//
    private Date updatedTime;
 
    @TableField(exist = false)
    private LocalDateTime reportTime;
}