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
package com.mes.tempering.queue.vo;
 
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 TempIndexMessageAllVO {
 
    @ApiModelProperty(value = "炉数")
    private Integer totalSize;
 
 
    @ApiModelProperty(value = "版图总览信息")
    private List<TemperingLayoutMessageVO> tempIndexMessageVOList;
}