huang
6 天以前 fc4e5c458094c6bf5238d7d21291325f19a57adb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mes.vertical.history.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2024/11/30 13:34
 * @Description:
 */
@Data
public class VerticalSheetCarTaskDTO {
 
    @ApiModelProperty(value = "玻璃 ID", position = 1)
    private String glassId;
 
    @ApiModelProperty(value = "起始格子编号", position = 2)
    private Integer startSlot;
 
    @ApiModelProperty(value = "目标格子编号", position = 3)
    private Integer targetSlot;
 
}