Explorar el Código

批量导入渠道客户的时候不自动同步客户归属

anderx hace 4 años
padre
commit
fc6b2cefa4
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/main/java/com/goafanti/common/mapper/UserMapperExt.xml

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

@@ -2074,12 +2074,12 @@ inner join(
 	
 	<insert id="insertBatch" parameterType="com.goafanti.user.bo.InputUserChannel">
 	INSERT INTO `user` (id, mobile, password,
-	nickname,identify_name,aid,
+	nickname,identify_name,
 	share_type,type,society_tag,channel,source,status)VALUES
 	<foreach item="item" index="index" collection="list"
 		separator=",">
 		(#{item.uid,jdbcType=VARCHAR}, #{item.contactMobile,jdbcType=VARCHAR},#{item.password,jdbcType=VARCHAR},
-		#{item.userName},#{item.userName},#{item.aid},
+		#{item.userName},#{item.userName},
 		#{item.shareType,jdbcType=TIMESTAMP}, 1,#{item.societyTag},1,1 ,#{item.userStatus})
     </foreach>
   </insert>