huang
9 天以前 22e17b6db03ca58bc477a35ca067e55a09cffce7
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
package com.mes.vertical.details.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 立式理片笼详情表(VerticalSheetCageDetails)表实体类
 *
 * @author makejava
 * @since 2025-07-08 15:52:24
 */
@ApiModel(description = "可调度玻璃信息")
@Data
public class VerticalSheetCageDetailsDTO {
 
 
    @ApiModelProperty(value = "工程号 ID", position = 1)
    private String engineerId;
 
    @ApiModelProperty(value = "钢化版图 ID", position = 2)
    private Integer temperingLayoutId;
 
    @ApiModelProperty(value = "流程卡号", position = 3)
    private Integer flowCardId;
 
    @ApiModelProperty(value = "层", position = 4)
    private Integer layer;
 
    @ApiModelProperty(value = "组号", position = 5)
    private Integer virtualSlot;
 
}