Browse Source

bugfix-意见反馈列表

Aslee 2 years ago
parent
commit
96e101f14c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/resources/mapper/ShopMapper.xml

+ 2 - 2
src/main/resources/mapper/ShopMapper.xml

@@ -339,8 +339,8 @@
     <select id="getFeedback" resultType="com.caimei.model.vo.FeedbackVo">
         select cf.id as feedbackId, a.authParty as clubName, cu.mobile, content, commitTime, handleStatus, handleResult, handleTime
         from cm_brand_club_feedback cf
-                 join cm_brand_club_user cu on cf.clubUserId = cu.id
-                 join cm_brand_auth a on cu.authId = a.id
+                 left join cm_brand_club_user cu on cf.clubUserId = cu.id
+                 left join cm_brand_auth a on cu.authId = a.id
         where cf.id = #{feedbackId}
     </select>
     <select id="getShopStatus" resultType="java.lang.Integer">