package com.mes.bigstoragecagetask.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* (BigStorageCageHistoryTask)表实体类
|
*
|
* @author makejava
|
* @since 2024-11-13 22:46:49
|
*/
|
@Data
|
public class BigStorageCageHistoryTask {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 玻璃id
|
*/
|
private String glassId;
|
/**
|
* 起始格子
|
*/
|
private Integer startSlot;
|
/**
|
* 目标格子
|
*/
|
private Integer targetSlot;
|
/**
|
* 任务状态
|
*/
|
private Integer taskState;
|
/**
|
* 玻璃数量
|
*/
|
private Integer glassCount;
|
/**
|
* 任务类型
|
*/
|
private Integer taskType;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
|
}
|