zhoushihao
2025-04-15 c6cb57f307b0c62a05cac78cfd828c313f10e611
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.mes.bigstoragecagetask.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;
 
/**
 * @Author : zhoush
 * @Date: 2025/3/11 8:46
 * @Description:
 */
@Data
public class BigStorageCageHistoryRequest extends PageRequest {
 
    /**
     * 玻璃id
     */
    @ApiModelProperty(value = "玻璃id", position = 1)
    private String glassId;
    /**
     * 起始格子
     */
    @ApiModelProperty(value = "起始格子", position = 2)
    private Integer startSlot;
    /**
     * 目标格子
     */
    @ApiModelProperty(value = "目标格子", position = 3)
    private Integer targetSlot;
    /**
     * 任务状态
     */
    @ApiModelProperty(value = "任务状态 0 开始 2完成 3破损 4未上车", position = 4)
    private List<Integer> taskStateList;
    /**
     * 任务类型
     */
    @ApiModelProperty(value = "任务类型 1进片 2出片 3调度", position = 5)
    private List<Integer>  taskTypeList;
    /**
     * 开始时间
     */
    @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;
}