package com.mes.downworkstation.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author zhoush
|
* @since 2024-03-27
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
|
public class DownWorkstionAndDownGlassinfo
|
{
|
/**
|
* 下片工位表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 工位id
|
*/
|
private Integer workstationId;
|
|
/**
|
* 流程卡号
|
*/
|
private String flowCardId;
|
|
/**
|
* 设备id
|
*/
|
private Integer deviceId;
|
|
/**
|
* 启用状态
|
*/
|
private Integer enableState;
|
|
/**
|
* 工作状态
|
*/
|
private Integer workState;
|
|
|
@TableField("total_quantity")
|
private Integer totalquantity;
|
|
@TableField("racks_number")
|
private Integer Racksnumber;
|
|
|
|
|
/**
|
* 顺序
|
*/
|
private Integer sequence;
|
|
/**
|
* 宽
|
*/
|
private double width;
|
|
/**
|
* 高
|
*/
|
private double height;
|
private double totalwidth;
|
|
private double totalheight;
|
/**
|
* 厚度
|
*/
|
private double thickness;
|
|
|
private String Filmsid;
|
}
|