package com.mes.damage.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author wu
|
* @since 2024-06-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class DamagePrint implements Serializable {
|
|
/**
|
* 流程卡
|
*/
|
private String flowCardId;
|
|
/**
|
* 工程号
|
*/
|
private String engineerId;
|
/**
|
* 层号
|
*/
|
private String layer;
|
|
/**
|
* 版图id
|
*/
|
private String temperingLayoutId;
|
|
/**
|
* 片序
|
*/
|
private String temperingFeedSequence;
|
|
/**
|
* 玻璃id
|
*/
|
private String glassId;
|
|
/**
|
* 宽度
|
*/
|
private double width;
|
|
/**
|
* 高度
|
*/
|
private double height;
|
|
/**
|
* 厚度
|
*/
|
private Integer thickness;
|
|
|
|
}
|