|
@@ -1233,7 +1233,7 @@
|
|
|
|
|
|
|
|
<select id="findEnteringAuditIsNoList" resultType="com.goafanti.customer.bo.CustomerListOut">
|
|
<select id="findEnteringAuditIsNoList" resultType="com.goafanti.customer.bo.CustomerListOut">
|
|
|
select u.id as uid,u.nickname as name,u.mobile as contactMobile,a.name as adminName,u.create_time as createTime,
|
|
select u.id as uid,u.nickname as name,u.mobile as contactMobile,a.name as adminName,u.create_time as createTime,
|
|
|
- u.audit_status as auditStatus,u.audit_opinion as auditOpinion
|
|
|
|
|
|
|
+ u.audit_status as auditStatus,u.audit_opinion as auditOpinion,u.society_tag as societyTag
|
|
|
from user u left join admin a on u.aid=a.id
|
|
from user u left join admin a on u.aid=a.id
|
|
|
where u.audit_status=2 and u.status != 1
|
|
where u.audit_status=2 and u.status != 1
|
|
|
<if test="aid != null and aid !=''">
|
|
<if test="aid != null and aid !=''">
|
|
@@ -1265,4 +1265,13 @@
|
|
|
and a.name = #{adminName,jdbcType=VARCHAR}
|
|
and a.name = #{adminName,jdbcType=VARCHAR}
|
|
|
</if>
|
|
</if>
|
|
|
</select>
|
|
</select>
|
|
|
|
|
+
|
|
|
|
|
+ <update id="updateRefusedCustomer" parameterType="map">
|
|
|
|
|
+ update user
|
|
|
|
|
+ set
|
|
|
|
|
+ nickname = #{nickname,jdbcType=VARCHAR},
|
|
|
|
|
+ mobile = #{mobile,jdbcType=VARCHAR},
|
|
|
|
|
+ societyTag = #{societyTag,jdbcType=VARCHAR}
|
|
|
|
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
|
|
+ </update>
|
|
|
</mapper>
|
|
</mapper>
|