wuyouming666
2024-06-14 3123dbd3a5be75999f368fbe4aa722e3877074ab
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
package com.mes.damage.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wu
 * @since 2024-06-13
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Damage implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
      @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private String glassId;
 
    private Integer deviceId;
 
    private String engineerId;
 
    private Integer temperingLayoutId;
 
    private LocalDateTime damageTime;
 
    private String remark;
 
    private Integer type;
 
    private Integer status;
 
 
}