From 12f73bafbe361f78d68a35de83ca3b3b4d4e0224 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 14 二月 2025 16:27:43 +0800 Subject: [PATCH] 查询待办任务时,判断是否挂起状态 --- business/src/main/java/com/ycl/domain/vo/CustomerTaskVO.java | 37 ++++++++++++++++++++++++++++++------- 1 files changed, 30 insertions(+), 7 deletions(-) diff --git a/business/src/main/java/com/ycl/domain/vo/CustomerTaskVO.java b/business/src/main/java/com/ycl/domain/vo/CustomerTaskVO.java index 86eebff..b346939 100644 --- a/business/src/main/java/com/ycl/domain/vo/CustomerTaskVO.java +++ b/business/src/main/java/com/ycl/domain/vo/CustomerTaskVO.java @@ -1,9 +1,11 @@ package com.ycl.domain.vo; +import com.ycl.common.enums.business.HandlerTypeEnum; import com.ycl.common.enums.business.TaskStatusEnum; import lombok.Data; import java.util.Date; +import java.util.List; /** * 浠诲姟鍥炴樉鍐呭 @@ -18,6 +20,11 @@ * flowable涓殑浠诲姟id */ private String taskId; + + /** + * 浠诲姟瀹氫箟id + */ + private String taskDefinitionKey; /** * flowable娴佺▼瀹炰緥id @@ -52,7 +59,7 @@ /** * 鍙戣捣浜篿d */ - private Long promoterId; + private String promoterId; /** * 鍙戣捣浜哄鍚� @@ -62,7 +69,7 @@ /** * 鍙戣捣浜哄崟浣� */ - private Long promoterUnitId; + private String promoterUnitId; /** * 鍙戣捣浜哄崟浣嶅悕绉� @@ -72,22 +79,32 @@ /** * 澶勭悊浜� */ - private String handlerName; + private List<String> handlerName; /** - * 鍙戣捣浜篿d + * 澶勭悊浜篿d */ - private Long handlerId; + private List<Long> handlerId; /** * 澶勭悊浜哄崟浣峣d */ - private Long handlerUnitId; + private List<Long> handlerUnitId; /** * 澶勭悊浜哄崟浣嶅悕绉� */ - private String handlerUnitName; + private List<String> handlerUnitName; + + /** + * 瀹為檯澶勭悊浜篿d + */ + private String actualHandlerUserId; + + /** + * 瀹為檯澶勭悊浜哄鍚� + */ + private String actualHandlerUserName; /** * 鍔炵悊鏈熼檺 @@ -108,4 +125,10 @@ * 浠诲姟鍒涘缓鏃堕棿 */ private Date createTime; + + /** + * 澶勭悊浜虹被鍨� + * + */ + private HandlerTypeEnum handlerType; } -- Gitblit v1.8.0