|
@@ -14,8 +14,6 @@ import java.util.Map;
|
|
* description:任务中心的DTO
|
|
* description:任务中心的DTO
|
|
*/
|
|
*/
|
|
|
|
|
|
-@Data
|
|
|
|
-@Accessors(chain = true)
|
|
|
|
public class TaskDto extends BaseDto {
|
|
public class TaskDto extends BaseDto {
|
|
private static final long serialVersionUID = -1L;
|
|
private static final long serialVersionUID = -1L;
|
|
|
|
|
|
@@ -236,4 +234,364 @@ public class TaskDto extends BaseDto {
|
|
private String candidatorId;
|
|
private String candidatorId;
|
|
|
|
|
|
private String candidatorTableName;
|
|
private String candidatorTableName;
|
|
|
|
+
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getLastTaskId() {
|
|
|
|
+ return lastTaskId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLastTaskId(Long lastTaskId) {
|
|
|
|
+ this.lastTaskId = lastTaskId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getIds() {
|
|
|
|
+ return ids;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIds(String ids) {
|
|
|
|
+ this.ids = ids;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getNodeId() {
|
|
|
|
+ return nodeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setNodeId(Long nodeId) {
|
|
|
|
+ this.nodeId = nodeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getInstanceId() {
|
|
|
|
+ return instanceId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInstanceId(Long instanceId) {
|
|
|
|
+ this.instanceId = instanceId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getActId() {
|
|
|
|
+ return actId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setActId(Long actId) {
|
|
|
|
+ this.actId = actId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Short getActType() {
|
|
|
|
+ return actType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setActType(Short actType) {
|
|
|
|
+ this.actType = actType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getRev() {
|
|
|
|
+ return rev;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRev(Integer rev) {
|
|
|
|
+ this.rev = rev;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getDescription() {
|
|
|
|
+ return description;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDescription(String description) {
|
|
|
|
+ this.description = description;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getCreateTime() {
|
|
|
|
+ return createTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
|
+ this.createTime = createTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getUpdateTime() {
|
|
|
|
+ return updateTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
|
+ this.updateTime = updateTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getApprovedTime() {
|
|
|
|
+ return approvedTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApprovedTime(String approvedTime) {
|
|
|
|
+ this.approvedTime = approvedTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getLastTask() {
|
|
|
|
+ return lastTask;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLastTask(Long lastTask) {
|
|
|
|
+ this.lastTask = lastTask;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Short getExcuStatus() {
|
|
|
|
+ return excuStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExcuStatus(Short excuStatus) {
|
|
|
|
+ this.excuStatus = excuStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getApprover() {
|
|
|
|
+ return approver;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApprover(Long approver) {
|
|
|
|
+ this.approver = approver;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getDelegateId() {
|
|
|
|
+ return delegateId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setDelegateId(Long delegateId) {
|
|
|
|
+ this.delegateId = delegateId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getLoadType() {
|
|
|
|
+ return loadType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLoadType(Integer loadType) {
|
|
|
|
+ this.loadType = loadType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Short getType() {
|
|
|
|
+ return type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setType(Short type) {
|
|
|
|
+ this.type = type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getBusinessCode() {
|
|
|
|
+ return businessCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBusinessCode(Long businessCode) {
|
|
|
|
+ this.businessCode = businessCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getBusinessType() {
|
|
|
|
+ return businessType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBusinessType(Long businessType) {
|
|
|
|
+ this.businessType = businessType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getBusinessBody() {
|
|
|
|
+ return businessBody;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBusinessBody(String businessBody) {
|
|
|
|
+ this.businessBody = businessBody;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getInitiator() {
|
|
|
|
+ return initiator;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInitiator(Long initiator) {
|
|
|
|
+ this.initiator = initiator;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getInitiatorName() {
|
|
|
|
+ return initiatorName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setInitiatorName(String initiatorName) {
|
|
|
|
+ this.initiatorName = initiatorName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getIsinitiator() {
|
|
|
|
+ return isinitiator;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIsinitiator(Boolean isinitiator) {
|
|
|
|
+ this.isinitiator = isinitiator;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getUserId() {
|
|
|
|
+ return userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUserId(Long userId) {
|
|
|
|
+ this.userId = userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSearchType() {
|
|
|
|
+ return searchType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSearchType(String searchType) {
|
|
|
|
+ this.searchType = searchType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Short getApproverType() {
|
|
|
|
+ return approverType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApproverType(Short approverType) {
|
|
|
|
+ this.approverType = approverType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getEndTime() {
|
|
|
|
+ return endTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEndTime(String endTime) {
|
|
|
|
+ this.endTime = endTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getBackId() {
|
|
|
|
+ return backId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBackId(Long backId) {
|
|
|
|
+ this.backId = backId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getModuleId() {
|
|
|
|
+ return moduleId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setModuleId(Long moduleId) {
|
|
|
|
+ this.moduleId = moduleId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Short getProcessStatus() {
|
|
|
|
+ return processStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setProcessStatus(Short processStatus) {
|
|
|
|
+ this.processStatus = processStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getBusinessNumber() {
|
|
|
|
+ return businessNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBusinessNumber(String businessNumber) {
|
|
|
|
+ this.businessNumber = businessNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getApproverName() {
|
|
|
|
+ return approverName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApproverName(String approverName) {
|
|
|
|
+ this.approverName = approverName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getBusinessTypeName() {
|
|
|
|
+ return businessTypeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBusinessTypeName(String businessTypeName) {
|
|
|
|
+ this.businessTypeName = businessTypeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSearchField() {
|
|
|
|
+ return searchField;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSearchField(String searchField) {
|
|
|
|
+ this.searchField = searchField;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<Map<String, String>> getApproverInfo() {
|
|
|
|
+ return approverInfo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApproverInfo(List<Map<String, String>> approverInfo) {
|
|
|
|
+ this.approverInfo = approverInfo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getBatch() {
|
|
|
|
+ return batch;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBatch(Integer batch) {
|
|
|
|
+ this.batch = batch;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getBackNodeId() {
|
|
|
|
+ return backNodeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBackNodeId(Long backNodeId) {
|
|
|
|
+ this.backNodeId = backNodeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getPassNodeId() {
|
|
|
|
+ return passNodeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPassNodeId(Long passNodeId) {
|
|
|
|
+ this.passNodeId = passNodeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getPoll() {
|
|
|
|
+ return isPoll;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPoll(Boolean poll) {
|
|
|
|
+ isPoll = poll;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getNodeName() {
|
|
|
|
+ return nodeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setNodeName(String nodeName) {
|
|
|
|
+ this.nodeName = nodeName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getTableName() {
|
|
|
|
+ return tableName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTableName(String tableName) {
|
|
|
|
+ this.tableName = tableName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getOther() {
|
|
|
|
+ return other;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOther(String other) {
|
|
|
|
+ this.other = other;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCandidatorId() {
|
|
|
|
+ return candidatorId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCandidatorId(String candidatorId) {
|
|
|
|
+ this.candidatorId = candidatorId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCandidatorTableName() {
|
|
|
|
+ return candidatorTableName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCandidatorTableName(String candidatorTableName) {
|
|
|
|
+ this.candidatorTableName = candidatorTableName;
|
|
|
|
+ }
|
|
}
|
|
}
|