wangfei
2024-10-09 33308e16bbb153d9aac76fd703ec0f38ea7e344a
hangzhoumesParent/moduleService/UnLoadGlassModule/src/main/java/com/mes/downglassinfo/entity/DownGlassInfo.java
@@ -1,13 +1,13 @@
package com.mes.downglassinfo.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 org.springframework.stereotype.Component;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import java.io.Serializable;
import java.util.Date;
/**
 * <p>
@@ -27,14 +27,28 @@
    /**
     * 下片玻璃信息表id
     */
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 工位id
     */
    private Integer workStationId;
    /**
     * 工程id
     */
    private String engineerId;
    /**
     * 流程卡号
     */
    private String flowCardId;
    /**
     * 层号
     */
    private Integer layer;
    /**
     * 顺序
@@ -44,17 +58,17 @@
    /**
     * 宽
     */
    private Double width;
    private double width;
    /**
     * 高
     */
    private Double height;
    private double height;
    /**
     * 厚度
     */
    private Double thickness;
    private double thickness;
    /**
     * 膜系
@@ -66,5 +80,14 @@
     */
    private String glassId;
    /**
     * 创建时间
     */
    private Date gmtCreate;
    /**
     * 玻璃类型
     */
    private Integer glassType;
}