From 6b9d2b5154bd34fbb244b61682f1f7dafd9ab735 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期三, 08 九月 2021 21:20:38 +0800 Subject: [PATCH] 微心愿操作记录接口改版 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActMicroWishDAO.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActMicroWishDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActMicroWishDAO.java index 9236108..a193c72 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActMicroWishDAO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActMicroWishDAO.java @@ -43,7 +43,7 @@ "w.`detail`, " + "w.form, " + "w.reject_reason, " + - "su.`name` responsible_name, " + + "su1.`name` responsible_name, " + "w.score, " + "w.img_width, " + "w.finish_at, " + @@ -58,11 +58,11 @@ "AND u.name like concat(#{comActMicroWishVO.sponsorName},'%') " + " </if> " + "<if test='comActMicroWishVO.responsibleName == null or comActMicroWishVO.responsibleName.trim() == ""'>" + - "LEFT JOIN com_pb_service_team su ON w.responsible_id = su.id " + + "LEFT JOIN sys_user su1 ON w.responsible_id = su1.user_id " + " </if> " + "<if test='comActMicroWishVO.responsibleName != null and comActMicroWishVO.responsibleName.trim() != ""'>" + - " JOIN com_pb_service_team su ON w.responsible_id = su.id " + - "AND su.`name` like concat(#{comActMicroWishVO.responsibleName},'%') " + + " JOIN sys_user su1 ON w.responsible_id = su1.user_id " + + "AND su1.`name` like concat(#{comActMicroWishVO.responsibleName},'%') " + " </if> " + " <where>" + "<if test='comActMicroWishVO.communityId != null and comActMicroWishVO.communityId != 0'>" + -- Gitblit v1.7.1