package com.mes.hollowtask.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* (HollowBigStorageCageHistoryTask)表实体类
|
*
|
* @author makejava
|
* @since 2024-11-27 15:22:47
|
*/
|
@Data
|
public class HollowBigStorageCageHistoryTask {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long 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;
|
|
|
}
|