Procházet zdrojové kódy

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

wubb před 8 roky
rodič
revize
9295c9a6da

+ 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>