|
|
@ -2,6 +2,8 @@ package com.foreverwin.mesnac.production.dto;
|
|
|
|
|
|
|
|
|
|
|
|
import com.foreverwin.mesnac.production.model.WorkShopTransfer;
|
|
|
|
import com.foreverwin.mesnac.production.model.WorkShopTransfer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.time.LocalDate;
|
|
|
|
|
|
|
|
|
|
|
|
public class WorkShopTransferDto extends WorkShopTransfer {
|
|
|
|
public class WorkShopTransferDto extends WorkShopTransfer {
|
|
|
|
private String lastOperation;
|
|
|
|
private String lastOperation;
|
|
|
|
private String lastOperationDesc;
|
|
|
|
private String lastOperationDesc;
|
|
|
@ -16,6 +18,15 @@ public class WorkShopTransferDto extends WorkShopTransfer {
|
|
|
|
private String workCenterDesc;
|
|
|
|
private String workCenterDesc;
|
|
|
|
private String employeeDescription;
|
|
|
|
private String employeeDescription;
|
|
|
|
private String lastStepId;
|
|
|
|
private String lastStepId;
|
|
|
|
|
|
|
|
private LocalDate localDate;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public LocalDate getLocalDate() {
|
|
|
|
|
|
|
|
return localDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setLocalDate(LocalDate localDate) {
|
|
|
|
|
|
|
|
this.localDate = localDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getLastStepId() {
|
|
|
|
public String getLastStepId() {
|
|
|
|
return lastStepId;
|
|
|
|
return lastStepId;
|
|
|
|