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; }