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; /** * // 流程卡号 */ 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; }