package com.mes.hollowqueue.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;
|
|
/**
|
* (HollowGlassQueueInfo)表实体类
|
*
|
* @author makejava
|
* @since 2024-11-30 10:19:55
|
*/
|
@Data
|
public class HollowGlassQueueInfo extends HollowBigStorageCageBaseInfo {
|
/**
|
* /*大理片笼详情表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
/**
|
* /*设备id
|
*/
|
private Integer deviceId;
|
/**
|
* /*虚拟栅格号
|
*/
|
private Integer virtualSlot;
|
/**
|
* /*栅格号
|
*/
|
private Integer slot;
|
/**
|
* /*小片在格内的顺序
|
*/
|
private Integer sequence;
|
/**
|
* /*流程卡号
|
*/
|
private String flowCardId;
|
/**
|
* /*玻璃类型
|
*/
|
private Integer glassType;
|
/**
|
* /*厚度
|
*/
|
private Double thickness;
|
/**
|
* /*状态
|
*/
|
private Integer state;
|
/**
|
* /*玻璃间隙
|
*/
|
private Integer gap;
|
|
private String engineerId;
|
/**
|
* /*总层号
|
*/
|
private Integer totalLayer;
|
/**
|
* /*创建时间
|
*/
|
private Date createTime;
|
/**
|
* /*更新时间
|
*/
|
private Date updateTime;
|
/**
|
* /*中空顺序
|
*/
|
private Integer hollowSequence;
|
|
/**
|
* 路线
|
*/
|
private Integer cell;
|
|
|
}
|