package com.mes.rawglasstask.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.time.LocalDateTime;
|
import java.io.Serializable;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author wf
|
* @since 2024-09-10
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class RawGlassStorageTask implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
// public Object getEndTime;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 任务ID
|
*/
|
private Integer enableId;
|
|
/**
|
* 起始格子
|
*/
|
private Integer originateSlot;
|
|
/**
|
* 目标格子
|
*/
|
private Integer endSlot;
|
|
/**
|
* 原片数量
|
*/
|
private String patternQuantity;
|
|
/**
|
* 任务类型
|
*/
|
private Integer enableType;
|
|
/**
|
* 任务状态
|
*/
|
private Integer enableState;
|
|
/**
|
* 创建时间
|
*/
|
private String createTime;
|
|
|
|
}
|