wuyouming666
2024-07-10 8cc26dd54779273f895a3cbc3f84c8933a02a0dc
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
package com.mes.edgglasstask.entity;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 *
 * </p>
 *
 * @author wu
 * @since 2024-05-11
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class EdgGlassTaskInfo implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    private String glassId;
 
    private Integer width;
 
    private Integer height;
 
    private Integer thickness;
 
    private Integer glassType;
 
    private Integer status;
 
    private Integer line;
 
    private Date time;
 
}