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;
|
|
|
}
|