计划模块(工艺线体逻辑变更,工单修改判断逻辑变更)
parent
c25d6e258d
commit
0524c17e13
@ -1,59 +0,0 @@
|
|||||||
package com.op.plan.domain.vo;
|
|
||||||
|
|
||||||
import com.op.plan.domain.ProLine;
|
|
||||||
import com.op.plan.domain.ProRoute;
|
|
||||||
import com.op.plan.domain.ProShift;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
// 返回工艺、成型机、班次VO
|
|
||||||
public class LineAndShiftVo {
|
|
||||||
// 成型机
|
|
||||||
private List<ProLine> lines;
|
|
||||||
// 班次
|
|
||||||
private List<ProShift> shifts;
|
|
||||||
// 工艺
|
|
||||||
private List<ProRoute> routes;
|
|
||||||
|
|
||||||
public LineAndShiftVo(List<ProLine> lines, List<ProShift> shifts, List<ProRoute> routes) {
|
|
||||||
this.lines = lines;
|
|
||||||
this.shifts = shifts;
|
|
||||||
this.routes = routes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ProLine> getLines() {
|
|
||||||
return lines;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLines(List<ProLine> lines) {
|
|
||||||
this.lines = lines;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ProShift> getShifts() {
|
|
||||||
return shifts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setShifts(List<ProShift> shifts) {
|
|
||||||
this.shifts = shifts;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ProRoute> getRoutes() {
|
|
||||||
return routes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRoutes(List<ProRoute> routes) {
|
|
||||||
this.routes = routes;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "LineAndShiftVo{" +
|
|
||||||
"lines=" + lines +
|
|
||||||
", shifts=" + shifts +
|
|
||||||
", routes=" + routes +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
|
|
||||||
public LineAndShiftVo() {
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue