package com.mes.uppattenusage.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.io.Serializable;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author zhoush
|
* @since 2024-04-07
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class UpPattenUsage implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 原片使用情况表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 工程号
|
*/
|
private Integer engineeringId;
|
|
/**
|
* 膜系id
|
*/
|
private Integer filmsId;
|
|
/**
|
* 宽
|
*/
|
private Double width;
|
|
/**
|
* 高
|
*/
|
private Double height;
|
|
/**
|
* 厚度
|
*/
|
private Double thickness;
|
|
/**
|
* 原片版图片序
|
*/
|
private Integer layoutSequence;
|
|
/**
|
* 状态
|
*/
|
private Integer state;
|
|
|
}
|