package com.mes.downglassinfo.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author zhoush
|
* @since 2024-03-27
|
*/
|
@Data
|
@Component
|
@EqualsAndHashCode(callSuper = false)
|
public class DownGlassInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 下片玻璃信息表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 工位id
|
*/
|
private Integer workStationId;
|
|
/**
|
* 工程id
|
*/
|
private String engineerId;
|
|
/**
|
* 流程卡号
|
*/
|
private String flowCardId;
|
|
/**
|
* 层号
|
*/
|
private Integer layer;
|
|
/**
|
* 顺序
|
*/
|
private Integer sequence;
|
|
/**
|
* 宽
|
*/
|
private double width;
|
|
/**
|
* 高
|
*/
|
private double height;
|
|
/**
|
* 厚度
|
*/
|
private double thickness;
|
|
/**
|
* 膜系
|
*/
|
private String Filmsid;
|
|
/**
|
* 玻璃id
|
*/
|
private String glassId;
|
|
/**
|
* 创建时间
|
*/
|
private Date gmtCreate;
|
|
/**
|
* 玻璃类型
|
*/
|
private Integer glassType;
|
|
}
|