package com.mes.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
@Data
|
public class DownStorageCage {
|
|
@TableId(type = IdType.AUTO)
|
private int id; // 下片前理片笼表id
|
private int deviceId; // 设备id
|
private String slot; // 栅格号
|
private String enableState; // 启用状态
|
private int remainWidth; // 剩余
|
|
}
|