XiaoRuby
2023-08-30 55e5fcc8df938fefc94103149dfe3acd328abfd6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yuanchu.mom.pojo.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
//更新排产(选择设备)
public class ManualTechnologyDto {
 
    //工序id
    @NotNull(message = "工序Id不能为空")
    @ApiModelProperty(value = "工序Id", example = "1", required = true)
    private Integer id;
 
    @ApiModelProperty(value = "工艺Id", example = "2", required = true)
    private Integer technologyId;
 
    @NotNull(message = "设备id不能为空")
    @ApiModelProperty(value = "设备Id", example = "1", required = true)
    private Integer  deviceId;
}