huang
2025-11-25 19f59c243e8df97c8b9fd9dba4e758be8235d68b
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.tempering.queue.vo;
 
import com.mes.tempering.queue.TemperingGlassQueueInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @Author : zhoush
 * @Date: 2025/7/14 14:37
 * @Description:
 */
@ApiModel(description = "版图总览信息")
@Data
public class TemperingLayoutMessageVO {
 
    @ApiModelProperty(value = "工程号")
    private String engineerId;
 
    @ApiModelProperty(value = "钢化版图")
    private Integer temperingLayoutId;
 
    @ApiModelProperty(value = "提示摆片")
    private List<TemperingGlassQueueInfo> promptList;
 
    @ApiModelProperty(value = "总页数")
    private Integer totalSize;
 
    @ApiModelProperty(value = "版图列表")
    private List<TemperingGlassQueueInfo> temperingGlassInfoList;
}