http://jira.mfd.msk:8088/browse/CLS-70
This commit is contained in:
parent
ca806a42e6
commit
3193e7014f
1 changed files with 29 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package ru.spcex.clearing.platform.messaging.domain.cud.schedule;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class TaskRunnerCommandRequest {
|
||||
|
||||
@JsonProperty
|
||||
private Long userId;
|
||||
|
||||
@JsonProperty
|
||||
private String taskName;
|
||||
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getTaskName() {
|
||||
return taskName;
|
||||
}
|
||||
|
||||
public void setTaskName(String taskName) {
|
||||
this.taskName = taskName;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue