Merge remote-tracking branch 'origin/master'
commit
10a57885f0
@ -0,0 +1,43 @@
|
||||
package com.op.plan.domain.dto;
|
||||
|
||||
public class CheckTaskBatchDTO {
|
||||
|
||||
private String incomeBatchNo;
|
||||
|
||||
private String newIncomeBatchNo;
|
||||
|
||||
private String orderNo;
|
||||
|
||||
public CheckTaskBatchDTO(String incomeBatchNo, String newIncomeBatchNo, String orderNo) {
|
||||
this.incomeBatchNo = incomeBatchNo;
|
||||
this.newIncomeBatchNo = newIncomeBatchNo;
|
||||
this.orderNo = orderNo;
|
||||
}
|
||||
public CheckTaskBatchDTO() {
|
||||
|
||||
}
|
||||
|
||||
public String getIncomeBatchNo() {
|
||||
return incomeBatchNo;
|
||||
}
|
||||
|
||||
public void setIncomeBatchNo(String incomeBatchNo) {
|
||||
this.incomeBatchNo = incomeBatchNo;
|
||||
}
|
||||
|
||||
public String getNewIncomeBatchNo() {
|
||||
return newIncomeBatchNo;
|
||||
}
|
||||
|
||||
public void setNewIncomeBatchNo(String newIncomeBatchNo) {
|
||||
this.newIncomeBatchNo = newIncomeBatchNo;
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return orderNo;
|
||||
}
|
||||
|
||||
public void setOrderNo(String orderNo) {
|
||||
this.orderNo = orderNo;
|
||||
}
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package com.op.plan.domain.dto;
|
||||
|
||||
public class MesReportWorkBatchDTO {
|
||||
private String batch;
|
||||
private String newBatch;
|
||||
private String parentOrder;
|
||||
private String workorderCode;
|
||||
|
||||
public MesReportWorkBatchDTO(String batch, String newBatch, String parentOrder, String workorderCode) {
|
||||
this.batch = batch;
|
||||
this.newBatch = newBatch;
|
||||
this.parentOrder = parentOrder;
|
||||
this.workorderCode = workorderCode;
|
||||
}
|
||||
|
||||
public MesReportWorkBatchDTO() {
|
||||
}
|
||||
|
||||
public String getBatch() {
|
||||
return batch;
|
||||
}
|
||||
|
||||
public void setBatch(String batch) {
|
||||
this.batch = batch;
|
||||
}
|
||||
|
||||
public String getNewBatch() {
|
||||
return newBatch;
|
||||
}
|
||||
|
||||
public void setNewBatch(String newBatch) {
|
||||
this.newBatch = newBatch;
|
||||
}
|
||||
|
||||
public String getParentOrder() {
|
||||
return parentOrder;
|
||||
}
|
||||
|
||||
public void setParentOrder(String parentOrder) {
|
||||
this.parentOrder = parentOrder;
|
||||
}
|
||||
|
||||
public String getWorkorderCode() {
|
||||
return workorderCode;
|
||||
}
|
||||
|
||||
public void setWorkorderCode(String workorderCode) {
|
||||
this.workorderCode = workorderCode;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue