|  | @@ -43,6 +43,7 @@
 | 
	
		
			
				|  |  |          <result property="userCode" column="user_code"/>
 | 
	
		
			
				|  |  |          <result property="isShow" column="is_show"/>
 | 
	
		
			
				|  |  |          <result property="qwExtId"    column="qw_ext_id"    />
 | 
	
		
			
				|  |  | +        <result property="isAddQw"    column="is_add_qw"    />
 | 
	
		
			
				|  |  |      </resultMap>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <sql id="selectFsUserVo">
 | 
	
	
		
			
				|  | @@ -80,6 +81,7 @@
 | 
	
		
			
				|  |  |                 is_del,
 | 
	
		
			
				|  |  |                 is_weixin_auth,
 | 
	
		
			
				|  |  |                 company_id,
 | 
	
		
			
				|  |  | +               is_add_qw,
 | 
	
		
			
				|  |  |                 company_user_id,
 | 
	
		
			
				|  |  |                 register_date,
 | 
	
		
			
				|  |  |                 register_code,
 | 
	
	
		
			
				|  | @@ -261,6 +263,7 @@
 | 
	
		
			
				|  |  |              <if test="userCode != null">user_code,</if>
 | 
	
		
			
				|  |  |              <if test="isShow != null">is_show,</if>
 | 
	
		
			
				|  |  |              <if test="qwExtId != null">qw_ext_id,</if>
 | 
	
		
			
				|  |  | +            <if test="isAddQw != null">is_add_qw,</if>
 | 
	
		
			
				|  |  |          </trim>
 | 
	
		
			
				|  |  |          <trim prefix="values (" suffix=")" suffixOverrides=",">
 | 
	
		
			
				|  |  |              <if test="username != null">#{username},</if>
 | 
	
	
		
			
				|  | @@ -301,6 +304,7 @@
 | 
	
		
			
				|  |  |              <if test="userCode != null">#{userCode},</if>
 | 
	
		
			
				|  |  |              <if test="isShow != null">#{isShow},</if>
 | 
	
		
			
				|  |  |              <if test="qwExtId != null">#{qwExtId},</if>
 | 
	
		
			
				|  |  | +            <if test="isAddQw != null">#{isAddQw},</if>
 | 
	
		
			
				|  |  |          </trim>
 | 
	
		
			
				|  |  |      </insert>
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -345,6 +349,7 @@
 | 
	
		
			
				|  |  |              <if test="userCode != null">user_code = #{userCode},</if>
 | 
	
		
			
				|  |  |              <if test="isShow != null">is_show = #{isShow},</if>
 | 
	
		
			
				|  |  |              <if test="qwExtId != null">qw_ext_id = #{qwExtId},</if>
 | 
	
		
			
				|  |  | +            <if test="isAddQw != null">is_add_qw = #{isAddQw},</if>
 | 
	
		
			
				|  |  |          </trim>
 | 
	
		
			
				|  |  |          where user_id = #{userId}
 | 
	
		
			
				|  |  |      </update>
 |