Quellcode durchsuchen

Merge branch 'master' of https://git.coding.net/aft/AFT

wubb vor 8 Jahren
Ursprung
Commit
9295c9a6da
1 geänderte Dateien mit 7 neuen und 0 gelöschten Zeilen
  1. 7 0
      src/main/java/com/goafanti/common/mapper/ActivityUserMapper.xml

+ 7 - 0
src/main/java/com/goafanti/common/mapper/ActivityUserMapper.xml

@@ -79,4 +79,11 @@
     where aid = #{aid,jdbcType=BIGINT}
       and uid = #{uid,jdbcType=VARCHAR}
   </update>
+  
+  <select id="selectByUid" resultMap="BaseResultMap" parameterType="java.lang.String" >
+    select 
+    <include refid="Base_Column_List" />
+    from activity_user
+    where  uid = #{uid,jdbcType=VARCHAR}
+  </select>
 </mapper>