wuyouming666
2024-06-14 d547fb41c160d98ab245d554bb9c4a22362dab1d
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,15 +22,8 @@
    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;
    /**
@@ -65,6 +55,18 @@
     * 任务状态
     */
    private Integer state;
    /**
     * 玻璃ID
     */
    private String glassId;
    /**
     * 工位id
     */
    private String workstationid;
    /**
     * 机器人
     */
    private String Robot;
}