-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
115 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
...core/src/main/java/com/webank/taskman/support/platform/dto/CreateTaskRequestInputDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package com.webank.taskman.support.platform.dto; | ||
|
||
public class CreateTaskRequestInputDto { | ||
private String callbackUrl; | ||
private String taskName; | ||
private String taskDescription; | ||
private String roleName; | ||
private String callbackParameter; | ||
private String reporter; | ||
private Integer overTime; | ||
|
||
private String taskFormInput; | ||
|
||
//#162 | ||
private String procInstId; | ||
|
||
|
||
public String getCallbackUrl() { | ||
return callbackUrl; | ||
} | ||
|
||
public void setCallbackUrl(String callbackUrl) { | ||
this.callbackUrl = callbackUrl; | ||
} | ||
|
||
public String getTaskName() { | ||
return taskName; | ||
} | ||
|
||
public void setTaskName(String taskName) { | ||
this.taskName = taskName; | ||
} | ||
|
||
public String getRoleName() { | ||
return roleName; | ||
} | ||
|
||
public void setRoleName(String roleName) { | ||
this.roleName = roleName; | ||
} | ||
|
||
public String getCallbackParameter() { | ||
return callbackParameter; | ||
} | ||
|
||
public void setCallbackParameter(String callbackParameter) { | ||
this.callbackParameter = callbackParameter; | ||
} | ||
|
||
public String getTaskDescription() { | ||
return taskDescription; | ||
} | ||
|
||
public void setTaskDescription(String taskDescription) { | ||
this.taskDescription = taskDescription; | ||
} | ||
|
||
public String getReporter() { | ||
return reporter; | ||
} | ||
|
||
public void setReporter(String reporter) { | ||
this.reporter = reporter; | ||
} | ||
|
||
public Integer getOverTime() { return overTime;} | ||
|
||
public void setOverTime(Integer overTime) { this.overTime = overTime; } | ||
|
||
public String getProcInstId() { | ||
return procInstId; | ||
} | ||
|
||
public void setProcInstId(String procInstId) { | ||
this.procInstId = procInstId; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters