wuyouming666
2024-07-01 2aa1ac49e96999cd58d975afdabe98215f91f534
hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downworkstation/entity/DownWorkstationTask.java
@@ -5,9 +5,6 @@
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.data.annotation.Id;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
//import javax.persistence.Id;
import java.io.Serializable;
@@ -25,26 +22,19 @@
    private static final long serialVersionUID = 1L;
    /**
     * id
     */
    @TableId(value = "id", type = IdType.AUTO)
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 宽
     */
    private Double width;
    private double width;
    /**
     * 高
     */
    private Double height;
    private double height;
    /**
     * 膜系
@@ -54,7 +44,7 @@
    /**
     * 厚度
     */
    private Double thickness;
    private double thickness;
    /**
     * 流程卡号
@@ -65,6 +55,18 @@
     * 任务状态
     */
    private Integer state;
    /**
     * 玻璃ID
     */
    private String glassId;
    /**
     * 工位id
     */
    private String workstationid;
    /**
     * 机器人
     */
    private String Robot;
}