package com.mes.opctask.entity.request;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.mes.base.entity.PageRequest;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* (LoadGlassDeviceTaskHistory)表实体类
|
*
|
* @author makejava
|
* @since 2024-11-06 22:23:00
|
*/
|
@SuppressWarnings("serial")
|
@Data
|
public class LoadGlassDeviceTaskHistoryRequest extends PageRequest {
|
/**
|
* 原片宽
|
*/
|
private String rawGlassWidth;
|
/**
|
* 原片高
|
*/
|
private String rawGlassHeight;
|
/**
|
* 原片宽
|
*/
|
private String rawGlassThickness;
|
/**
|
* 原片高
|
*/
|
private String rawGlassfilmsId;
|
/**
|
* 上片设备编号
|
*/
|
private Integer station;
|
/**
|
* 上片位编号
|
*/
|
private Integer slot;
|
/**
|
* 任务状态 0默认空任务 1执行中 2结束任务
|
*/
|
private List<Integer> taskStateList;
|
/**
|
* 开始时间
|
*/
|
@ApiModelProperty(value = "开始时间", position = 6)
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date beginDate;
|
|
/**
|
* 结束时间
|
*/
|
@ApiModelProperty(value = "结束时间", position = 7)
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date endDate;
|
|
}
|