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
package com.mes.cutting.history.requst;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
/**
 * @Author : zhoush
 * @Date: 2025/8/12 15:12
 * @Description:
 */
@ApiModel(description = "版图识别入参")
@Data
public class CutTerritoryRequest {
 
    @ApiModelProperty(value = "原片工程号", position = 1)
    @NotNull
    private String engineerId;
 
    @ApiModelProperty(value = "原片片序", position = 2)
    @NotNull
    private int rawSequence;
 
    @ApiModelProperty(value = "线路", position = 3)
    private Integer workLine;
 
    @ApiModelProperty(value = "是否仅获取未磨边的 1:是  0:否,默认为0", position = 4)
    @NotNull
    private int isAll;
 
    @ApiModelProperty(value = "当前线路联机状态 默认0", position = 3)
    private String onlineState;
}