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
package com.mes.base.engineering.entity.request;
 
import com.mes.rawqueue.EngineeringRawQueue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/2 19:44
 * @Description:
 */
@Data
@ApiModel(description = "上片工程号信息")
public class EngineerRequest {
 
    @ApiModelProperty(value = "工程id")
    private String engineerId;
 
    @ApiModelProperty(value = "工程状态:1:开始上片 2:暂停上片 3:结束上片")
    private int state;
 
    @ApiModelProperty(value = "上片线路:1线 2线")
    private int workLine;
 
    @ApiModelProperty(value = "工程下的原片队列")
    private List<EngineeringRawQueue> queueList;
}