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
package org.jeecg.modules.arj.entity;
 
import com.baomidou.mybatisplus.annotation.*;
 
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
 
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-24
 */
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="FeipinHanji对象", description="焊机废品表")
public class FeipinHanji 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;
    @ApiModelProperty(value = "油罐")
    private String youguan;
 
    private Integer youguanNum;
 
 
    @ApiModelProperty(value = "头罐")
    private String touguan;
 
    private Integer touguanNum;
 
    @ApiModelProperty(value = "抽检")
    private String choujian;
 
    private Integer choujianNum;
 
    @ApiModelProperty(value = "外涂不良")
    private String waitubuliang;
 
    private Integer waitubuliangNum;
    @ApiModelProperty(value = "卡罐")
    private String kaguan;
 
    private Integer kaguanNum;
    @ApiModelProperty(value = "固化不良")
    private String guhuabuliang;
 
    private Integer guhuabuliangNum;
    @ApiModelProperty(value = "焊接不良")
    private String hanjiebuliang;
 
    private Integer hanjiebuliangNum;
    @ApiModelProperty(value = "名称批号")
    private String namePihao;
 
    private String namePihaoValue;
 
    private String headId;
    @TableField(exist = false)
    private LocalDateTime reportTime;
 
    @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;
}