package com.mes.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* big_storage_cage大理片笼表实体类
|
*/
|
@Data //lombok 简写java代码 实体类的get与set
|
@TableName("big_storage_cage")
|
public class BigStorageCage {
|
|
/**
|
* 主键,自动递增
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 设备id
|
*/
|
private Integer deviceId;
|
|
/**
|
* 栅格号
|
*/
|
private String slot;
|
|
/**
|
* 启用状态
|
*/
|
private String enableState;
|
|
/**
|
* 剩余宽度
|
*/
|
private Integer remainWidth;
|
|
/**
|
* 理片笼详情
|
*/
|
private BigStorageCageDetails bigStorageCageDetail;
|
}
|