You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
482 B
23 lines
482 B
3 years ago
|
package com.zilber.boot.activiti.dto;
|
||
|
|
||
|
import io.swagger.annotations.ApiModel;
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.Getter;
|
||
|
import lombok.Setter;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@ApiModel("任务查询")
|
||
|
public class TaskQueryDTO extends PageQueryDTO {
|
||
|
|
||
|
@ApiModelProperty("流程定义Key")
|
||
|
private String procDefKey;
|
||
|
|
||
|
@ApiModelProperty("任务执行人")
|
||
|
private String assignee;
|
||
|
|
||
|
@ApiModelProperty("流程实例ID")
|
||
|
private String procInstId;
|
||
|
|
||
|
}
|