Selaa lähdekoodia

Merge remote-tracking branch 'origin/dev' into test

wanghui 8 vuotta sitten
vanhempi
commit
dc19bb9de6
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      src/main/java/com/goafanti/common/mapper/UserMapperExt.xml

+ 2 - 2
src/main/java/com/goafanti/common/mapper/UserMapperExt.xml

@@ -386,12 +386,12 @@
 	</select>
 	
 	<select id="findCustomerContacts" parameterType="java.lang.String" resultType="com.goafanti.common.model.OrganizationContactBook">
-		select id as ocbId,name,mobile from organization_contact_book 
+		select id,name,mobile from organization_contact_book 
 		where uid = #{uid,jdbcType=VARCHAR} and aid = #{aid,jdbcType=VARCHAR}
 	</select>
 	
 	<select id="findAllContacts" parameterType="java.lang.String" resultType="com.goafanti.common.model.OrganizationContactBook">
-		select id as ocbId,name,mobile from organization_contact_book 
+		select id,name,mobile from organization_contact_book 
 		where uid = #{uid,jdbcType=VARCHAR}
 		group by name
 	</select>