ReassignRequestDto.java
package com.mycim.valueobject.wip.dto;
import java.util.List;
public class ReassignRequestDto {
private String reassignType;
private String targetProductId;
private Integer targetProductVersion;
private String targetProcessId;
private Integer targetProcessVersion;
private String targetFlowSeq;
private String targetStepPath;
private Boolean deleteFutureActionFlag;
private List<String> reassignLotIds;
private List<Long> reassignLotRrns;
private String department;
private String responsibilityUserId;
private Long responsibilityUserRrn;
private String deptExt;
private String reason;
public String getReassignType() {
return reassignType;
}
public void setReassignType(String reassignType) {
this.reassignType = reassignType;
}
public String getTargetProductId() {
return targetProductId;
}
public void setTargetProductId(String targetProductId) {
this.targetProductId = targetProductId;
}
public Integer getTargetProductVersion() {
return targetProductVersion;
}
public void setTargetProductVersion(Integer targetProductVersion) {
this.targetProductVersion = targetProductVersion;
}
public String getTargetProcessId() {
return targetProcessId;
}
public void setTargetProcessId(String targetProcessId) {
this.targetProcessId = targetProcessId;
}
public Integer getTargetProcessVersion() {
return targetProcessVersion;
}
public void setTargetProcessVersion(Integer targetProcessVersion) {
this.targetProcessVersion = targetProcessVersion;
}
public String getTargetFlowSeq() {
return targetFlowSeq;
}
public void setTargetFlowSeq(String targetFlowSeq) {
this.targetFlowSeq = targetFlowSeq;
}
public String getTargetStepPath() {
return targetStepPath;
}
public void setTargetStepPath(String targetStepPath) {
this.targetStepPath = targetStepPath;
}
public Boolean getDeleteFutureActionFlag() {
return deleteFutureActionFlag;
}
public void setDeleteFutureActionFlag(Boolean deleteFutureActionFlag) {
this.deleteFutureActionFlag = deleteFutureActionFlag;
}
public List<String> getReassignLotIds() {
return reassignLotIds;
}
public void setReassignLotIds(List<String> reassignLotIds) {
this.reassignLotIds = reassignLotIds;
}
public List<Long> getReassignLotRrns() {
return reassignLotRrns;
}
public void setReassignLotRrns(List<Long> reassignLotRrns) {
this.reassignLotRrns = reassignLotRrns;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public String getResponsibilityUserId() {
return responsibilityUserId;
}
public void setResponsibilityUserId(String responsibilityUserId) {
this.responsibilityUserId = responsibilityUserId;
}
public Long getResponsibilityUserRrn() {
return responsibilityUserRrn;
}
public void setResponsibilityUserRrn(Long responsibilityUserRrn) {
this.responsibilityUserRrn = responsibilityUserRrn;
}
public String getDeptExt() {
return deptExt;
}
public void setDeptExt(String deptExt) {
this.deptExt = deptExt;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}