XiaoRuby
2023-09-01 8e39c9bbf8a8bb4707f2a766295b40497ae96706
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import javax.validation.constraints.NotNull;
import java.util.Date;
 
//查看排产详情中的计划编制
@Data
public class ManualTechnologyDto1 {
 
    @NotNull(message = "工序Id不能为空")
    @ApiModelProperty(value = "工序Id", example = "1", required = true)
    private Integer manualTechnologyId;
 
    @NotNull(message = "设备id不能为空")
    @ApiModelProperty(value = "设备Id", example = "1", required = true)
    private Integer  deviceId;
}