zhoushihao
2025-02-28 f9ac6553e1e96f07b58ea4e0b51f6af9875219ea
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
package com.mes.hollow.entity.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2024/12/26 20:40
 * @Description:
 */
@ApiModel(description = "中空任务信息表")
@Data
public class HollowTaskRequest {
 
    @ApiModelProperty(value = "流程卡")
    private String flowCardId;
    @ApiModelProperty(value = "路线:930(李赛克,界面需要输入相关数据) 931")
    private int cell;
    @ApiModelProperty(value = "配对数量")
    private int totalPairQuantity;
    @ApiModelProperty(value = "配方id")
    private Long formulaId;
 
 
}