huang
2025-10-30 a99650cb00bf5b0650c33f39a4221b765201d228
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
package com.mes.rawglass.history.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author huang
 * @since 2025/7/17
 */
@Data
public class GlassStorageTaskDTO {
 
    @ApiModelProperty(value = "起始格子", position = 1)
    private Integer startSlot;
 
    @ApiModelProperty(value = "目标格子", position = 2)
    private Integer endSlot;
 
    @ApiModelProperty(value = "架子号", position = 3)
    private Integer shelf;
 
    @ApiModelProperty(value = "原片数量", position = 4)
    private Integer rawQuantity;
 
    @ApiModelProperty(value = "任务类型", position = 5)
    private Integer taskType;
}