huang
2025-10-30 a99650cb00bf5b0650c33f39a4221b765201d228
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.mes.damage;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
 
/**
 * <p>
 *
 * </p>
 *
 * @author wu
 * @since 2024-06-25
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Damage implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value = "工程号")
    private String engineerId;
 
    @ApiModelProperty(value = "玻璃id")
    private String glassId;
 
    @ApiModelProperty(value = "线路")
    private Integer line;
 
    @ApiModelProperty(value = "工序")
    private String workingProcedure;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "报工状态:1:未报工 3:已报工 7未报工已现补  8同步现补给erp")
    private Integer reportState;
 
    @ApiModelProperty(value = "流程卡")
    private String flowCardId;
 
    @ApiModelProperty(value = "订单序号")
    private Integer productSortNumber;
 
    @ApiModelProperty(value = "层")
    private Integer layer;
 
    @ApiModelProperty(value = "班组名称")
    private String teamsGroupsName;
 
    @ApiModelProperty(value = "设备名称")
    private String deviceName;
 
    @ApiModelProperty(value = "破损详情id")
    private Long damageDetailsId;
 
    @ApiModelProperty(value = "创建时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private String createTime;
 
    @ApiModelProperty(value = "更新时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private String updateTime;
 
}