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
28
29
30
31
32
33
34
35
36
37
38
package com.mes.base.engineering.entity.vo;
 
import com.mes.glassinfo.GlassInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/17 10:22
 * @Description:
 */
@ApiModel(description = ":")
@Data
public class CutDrawingInfoVO {
 
 
    @ApiModelProperty(value = "原片版图小片信息", position = 1)
    private List<GlassInfo> glassInfoList;
 
    @ApiModelProperty(value = "原片工程号", position = 2)
    private String engineeringId;
 
    @ApiModelProperty(value = "原片片序", position = 3)
    private Integer layoutSequence;
 
    @ApiModelProperty(value = "总片序", position = 4)
    private Integer totalRawSequence;
 
    @ApiModelProperty(value = "宽", position = 5)
    private Double width;
 
    @ApiModelProperty(value = "高", position = 6)
    private Double height;
 
}