package com.mes.downworkstation.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springframework.data.annotation.Id;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author zhoush
|
* @since 2024-04-07
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class DownWorkstationTask implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 宽
|
*/
|
private Double width;
|
|
/**
|
* 高
|
*/
|
private Double height;
|
|
/**
|
* 膜系
|
*/
|
private String filmsid;
|
|
/**
|
* 厚度
|
*/
|
private Double thickness;
|
|
/**
|
* 流程卡号
|
*/
|
private String flowCardId;
|
|
/**
|
* 任务状态
|
*/
|
private Integer state;
|
/**
|
* 玻璃ID
|
*/
|
private String glassId;
|
|
/**
|
* 工位id
|
*/
|
private String workstationid;
|
|
/**
|
* 机器人
|
*/
|
private String Robot;
|
}
|