wu
2024-04-08 cb4da9b55edfdda5beacca036b99130b33b9449b
UnLoadGlassModule/src/main/java/com/mes/entity/DownWorkstation.java
@@ -1,20 +1,56 @@
package com.mes.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
        import com.baomidou.mybatisplus.annotation.TableId;
        import lombok.Data;
@Data
public class DownWorkstation {
    /**
     * // 下片工位表
     */
    @TableId(type = IdType.AUTO)
    private int id; // 下片工位表id
    private Integer workstationId; // 工位id
    private String flowCardId; // 流程卡号
    private Integer deviceId; // 设备id
    private Integer enableState; // 启用状态
    private Integer workState; // 工作状态
    private Integer racks_number; // 已落架数量
    private Integer total_quantity; // 总数量
    private int id;
    /**
     * // 工位id
     */
    private Integer workstationId;
    /**
     *  // 流程卡号
     */
    private String flowCardId;
    /**
     *  // 设备id
     */
    private Integer deviceId;
    /**
     *   // 启用状态
     */
    private Integer enableState;
    /**
     *    // 工作状态
     */
    private Integer workState;
    /**
     *  // 已落架数量
     */
    @TableField(value = "racks_number")
    private int racksnumber;
    /**
     *     // 总数量
     */
    @TableField(value = "total_quantity")
    private Integer totalquantity;
}