package com.mes.opctask.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* (EdgStorageDeviceTaskHistory)表实体类
|
*
|
* @author makejava
|
* @since 2024-10-27 21:04:33
|
*/
|
@SuppressWarnings("serial")
|
@Data
|
public class EdgStorageDeviceTaskHistory extends Model<EdgStorageDeviceTaskHistory> {
|
/**
|
* 工程表id
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
/**
|
* 进片玻璃id
|
*/
|
private String glassIdIn;
|
/**
|
* 出片玻璃id
|
*/
|
private String glassIdOut;
|
/**
|
* 当前层号
|
*/
|
private Integer currentCell;
|
/**
|
* 层号
|
*/
|
private Integer startCell;
|
/**
|
* 预留层号
|
*/
|
private Integer endCell;
|
/**
|
* 任务状态 0默认空任务 1 进片 2出片 3 直通 4执行中 5结束任务 6其他
|
*/
|
private Integer taskState;
|
/**
|
* 任务状态 0默认空任务 1 进片 2出片 3 直通 4执行中 5结束任务 6其他
|
*/
|
private Integer taskType;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 更新时间
|
*/
|
private Date updateTime;
|
|
|
}
|