[新增] 代办查询
This commit is contained in:
@@ -1,73 +0,0 @@
|
||||
package com.adc.da.wkflow.business_main.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("ACT_RU_TASK")
|
||||
public class TaskEntity {
|
||||
|
||||
@TableId(value = "ID_", type = IdType.INPUT)
|
||||
private String id;
|
||||
|
||||
@TableField("REV_")
|
||||
private int rev;
|
||||
|
||||
@TableField("EXECUTION_ID_")
|
||||
private String executionId;
|
||||
|
||||
@TableField("PROC_INST_ID_")
|
||||
private String processInstanceId;
|
||||
|
||||
@TableField("PROC_DEF_ID_")
|
||||
private String processDefinitionId;
|
||||
|
||||
@TableField("NAME_")
|
||||
private String name;
|
||||
|
||||
@TableField("PARENT_TASK_ID_")
|
||||
private String parentTaskId;
|
||||
|
||||
@TableField("DESCRIPTION_")
|
||||
private String description;
|
||||
|
||||
@TableField("TASK_DEF_KEY_")
|
||||
private String taskDefinitionKey;
|
||||
|
||||
@TableField("OWNER_")
|
||||
private String owner;
|
||||
|
||||
@TableField("ASSIGNEE_")
|
||||
private String assignee;
|
||||
|
||||
@TableField("DELEGATION_")
|
||||
private String delegation;
|
||||
|
||||
@TableField("PRIORITY_")
|
||||
private int priority;
|
||||
|
||||
@TableField("CREATE_TIME_")
|
||||
private Date createTime;
|
||||
|
||||
@TableField("DUE_DATE_")
|
||||
private Date dueDate;
|
||||
|
||||
@TableField("CATEGORY_")
|
||||
private String category;
|
||||
|
||||
@TableField("SUSPENSION_STATE_")
|
||||
private int suspensionState;
|
||||
|
||||
@TableField("TENANT_ID_")
|
||||
private String tenantId;
|
||||
|
||||
@TableField("FORM_KEY_")
|
||||
private String formKey;
|
||||
|
||||
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
package com.adc.da.wkflow.business_main.mapper;
|
||||
|
||||
import com.adc.da.wkflow.business_activiti.dto.TaskCommonQuery;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import org.activiti.engine.task.Task;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface TaskMapper extends BaseMapper<Task> {
|
||||
|
||||
|
||||
List<Task> todoTaskList(Page<Task> page, @Param("pageVO") TaskCommonQuery taskCommonQuery);
|
||||
|
||||
long todoTaskListCount(@Param("pageVO") TaskCommonQuery taskCommonQuery);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user