|
@ -9,6 +9,7 @@ import java.time.LocalDateTime; |
|
|
import java.time.LocalDateTime; |
|
|
import java.time.LocalDateTime; |
|
|
import java.time.LocalDateTime; |
|
|
import java.time.LocalDateTime; |
|
|
import javax.validation.constraints.*; |
|
|
import javax.validation.constraints.*; |
|
|
|
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
|
import static com.win.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|
|
import static com.win.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|
@ -67,4 +68,15 @@ public class ProcessrouteNodeDetailBaseVO { |
|
|
private String routeVersion; |
|
|
private String routeVersion; |
|
|
@Schema(description = "工序节拍") |
|
|
@Schema(description = "工序节拍") |
|
|
private BigDecimal nodeClock; |
|
|
private BigDecimal nodeClock; |
|
|
|
|
|
@Schema(description = "是否报工") |
|
|
|
|
|
private String reportFlag; |
|
|
|
|
|
@Schema(description = "是否质检") |
|
|
|
|
|
private String checkFlag; |
|
|
|
|
|
@Schema(description = "报工方式") |
|
|
|
|
|
private String reportType; |
|
|
|
|
|
@Schema(description = "质检规则") |
|
|
|
|
|
private String checkRule; |
|
|
|
|
|
@Schema(description = "质检时长") |
|
|
|
|
|
private String checkClock; |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|