package com.mes.hollow.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.mes.base.entity.HollowBigStorageCageBaseInfo;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* (HollowBigStorageCageDetails)表实体类
|
*
|
* @author makejava
|
* @since 2024-11-21 09:23:12
|
*/
|
@Data
|
public class HollowBigStorageCageDetails extends HollowBigStorageCageBaseInfo {
|
/**
|
* /*大理片笼详情表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
/**
|
* 设备id
|
*/
|
private Integer deviceId;
|
/**
|
* /*虚拟格子
|
*/
|
private Integer virtualSlot;
|
/**
|
* /*小片在格内的顺序
|
*/
|
private Integer sequence;
|
/**
|
* /*流程卡号
|
*/
|
private String flowCardId;
|
/**
|
* /*玻璃类型
|
*/
|
private Integer glassType;
|
/**
|
* 膜系
|
*/
|
private String filmsId;
|
/**
|
* /*厚度
|
*/
|
private Double thickness;
|
/**
|
* /*状态
|
*/
|
private Integer state;
|
/**
|
* /*玻璃间隙
|
*/
|
private Integer gap;
|
|
private String engineerId;
|
/**
|
* /*层号
|
*/
|
private Integer totalLayer;
|
|
/**
|
* /*层号
|
*/
|
private Integer hollowSequence;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
}
|