package com.mes.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
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; // 工作状态
|
}
|