| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="ownerServiceDaoImpl">
- <!-- 保存业主信息 add by wuxw 2018-07-03 -->
- <insert id="saveBusinessOwnerInfo" parameterType="Map">
- insert into business_building_owner(
- operate,sex,name,link,remark,owner_id,b_id,user_id,age,member_id,owner_type_cd,community_id,id_card
- ) values (
- #{operate},#{sex},#{name},#{link},#{remark},#{ownerId},#{bId},#{userId},#{age},#{memberId},#{ownerTypeCd},#{communityId},#{idCard}
- )
- </insert>
- <!-- 查询业主信息(Business) add by wuxw 2018-07-03 -->
- <select id="getBusinessOwnerInfo" parameterType="Map" resultType="Map">
- select t.operate,t.sex,t.name,t.link,t.remark,t.owner_id,t.owner_id ownerId,t.b_id,t.b_id bId,
- t.user_id,t.user_id userId,t.age,t.member_id,t.member_id memberId,t.owner_type_cd,
- t.owner_type_cd ownerTypeCd,t.community_id,t.community_id communityId,
- t.id_card, t.id_card idCard
- from business_building_owner t
- where 1 =1
- <if test="operate !=null and operate != ''">
- and t.operate= #{operate}
- </if>
- <if test="sex !=null ">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name = #{name}
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- </select>
- <!-- 保存业主信息至 instance表中 add by wuxw 2018-07-03 -->
- <insert id="saveOwnerInfoInstance" parameterType="Map">
- insert into building_owner(
- sex,name,link,status_cd,remark,owner_id,b_id,user_id,age,member_id,owner_type_cd,community_id,id_card
- ) select t.sex,t.name,t.link,'0',t.remark,t.owner_id,t.b_id,t.user_id,t.age,t.member_id,t.owner_type_cd,
- t.community_id communityId,t.id_card
- from business_building_owner t where 1=1
- and t.operate= 'ADD'
- <if test="sex !=null">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name= #{name}
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- </insert>
- <!-- 查询业主信息 add by wuxw 2018-07-03 -->
- <select id="getOwnerInfo" parameterType="Map" resultType="Map">
- select t.sex,t.name,t.link,t.status_cd,t.status_cd statusCd,t.remark,
- t.owner_id,t.owner_id ownerId,t.b_id,t.b_id bId,
- t.user_id,t.user_id userId,t.age,t.member_id,t.member_id memberId,t.owner_type_cd,
- t.owner_type_cd ownerTypeCd,t.create_time createTime,t.community_id,
- t.community_id communityId,t.id_card, t.id_card idCard
- from building_owner t
- where 1 =1
- <if test="sex !=null">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name like concat('%',#{name},'%')
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerIds != null and ownerIds != ''">
- and t.owner_id in
- <foreach collection="ownerIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- <if test="page != -1 and page != null ">
- limit #{page}, #{row}
- </if>
- </select>
- <!-- 查询业主信息 add by wuxw 2018-07-03 -->
- <select id="getOwnerInfoCount" parameterType="Map" resultType="Map">
- select count(1) count
- from building_owner t
- where 1 =1
- <if test="sex !=null">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name like concat('%',#{name},'%')
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerIds != null and ownerIds != ''">
- and t.owner_id in
- <foreach collection="ownerIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- </select>
- <!-- 修改业主信息 add by wuxw 2018-07-03 -->
- <update id="updateOwnerInfoInstance" parameterType="Map">
- update building_owner t set t.status_cd = #{statusCd}
- <if test="newBId != null and newBId != ''">
- ,t.b_id = #{newBId}
- </if>
- <if test="sex !=null ">
- , t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- , t.name= #{name}
- </if>
- <if test="link !=null and link != ''">
- , t.link= #{link}
- </if>
- <if test="remark !=null and remark != ''">
- , t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- , t.owner_id= #{ownerId}
- </if>
- <if test="userId !=null and userId != ''">
- , t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- , t.age= #{age}
- </if>
- <if test="idCard !=null and idCard != ''">
- , t.id_card = #{idCard}
- </if>
- where 1=1
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- </update>
- <!-- 查询业主数量 add by wuxw 2018-07-03 -->
- <select id="queryOwnersCount" parameterType="Map" resultType="Map">
- select count(1) count
- FROM building_owner t
- where 1=1
- <if test="sex !=null ">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name like concat('%',#{name},'%')
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- </select>
- <!-- 查询业主数量 add by wuxw 2018-07-03 -->
- <select id="queryOwnersCountByCondition" parameterType="Map" resultType="Map">
- select count(1) count
- FROM building_owner t , s_community_member cm
- WHERE t.`member_id` = cm.`member_id`
- AND cm.`community_id` = #{communityId}
- AND cm.`status_cd` = '0'
- AND t.`status_cd` = '0'
- <if test="sex !=null ">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name like concat('%',#{name},'%')
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- </select>
- <!-- 查询业主信息 add by wuxw 2018-07-03 -->
- <select id="getOwnerInfoByCondition" parameterType="Map" resultType="Map">
- select t.sex,t.name,t.link,t.status_cd,t.status_cd statusCd,t.remark,t.owner_id,t.owner_id ownerId,t.b_id,t.b_id
- bId,
- t.user_id,t.user_id userId,t.age,t.member_id,t.member_id memberId,
- t.owner_type_cd,t.owner_type_cd ownerTypeCd,t.community_id,
- t.community_id communityId,t.id_card, t.id_card idCard
- FROM building_owner t , s_community_member cm
- WHERE t.`member_id` = cm.`member_id`
- AND cm.`community_id` = #{communityId}
- AND cm.`status_cd` = '0'
- AND t.`status_cd` = '0'
- <if test="sex !=null ">
- and t.sex= #{sex}
- </if>
- <if test="name !=null and name != ''">
- and t.name like concat('%',#{name},'%')
- </if>
- <if test="link !=null and link != ''">
- and t.link= #{link}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="remark !=null and remark != ''">
- and t.remark= #{remark}
- </if>
- <if test="ownerId !=null and ownerId != ''">
- and t.owner_id= #{ownerId}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="idCard !=null and idCard != ''">
- and t.id_card = #{idCard}
- </if>
- <if test="bId !=null and bId != ''">
- and t.b_id= #{bId}
- </if>
- <if test="userId !=null and userId != ''">
- and t.user_id= #{userId}
- </if>
- <if test="age !=null and age != ''">
- and t.age= #{age}
- </if>
- <if test="memberId !=null and memberId != ''">
- and t.member_id= #{memberId}
- </if>
- <if test="ownerIds != null and ownerIds != ''">
- and t.owner_id in
- <foreach collection="ownerIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="ownerTypeCd !=null and ownerTypeCd != ''">
- and t.owner_type_cd= #{ownerTypeCd}
- </if>
- <if test="page != -1 and page != null ">
- limit #{page}, #{row}
- </if>
- </select>
- <!-- 查询未入驻业主 总数 -->
- <select id="queryNoEnterRoomOwnerCount" parameterType="Map" resultType="Map">
- SELECT
- COUNT(1) count
- FROM
- building_owner_room_rel a,
- building_owner o,
- s_community_member m
- WHERE a.`state` IN ('2001', '2003')
- AND a.`owner_id` = o.`owner_id`
- AND o.`owner_id` = m.`member_id`
- AND m.`member_type_cd` = '390001200005'
- AND m.`community_id` = #{communityId}
- AND a.`status_cd` = '0'
- AND o.`status_cd` = '0'
- AND m.`status_cd` = '0'
- </select>
- <!-- queryOwnersByRoom -->
- <!-- 根据房屋查询业主信息 -->
- <select id="queryOwnersByRoom" parameterType="Map" resultType="Map">
- SELECT t.sex,t.name,t.link,t.status_cd,t.status_cd statusCd,t.remark,t.owner_id,t.owner_id ownerId,t.b_id,t.b_id
- bId,
- t.user_id,t.user_id userId,t.age,t.member_id,t.member_id memberId,t.owner_type_cd,t.owner_type_cd ownerTypeCd,
- r.`room_id` roomId,r.`room_num` roomNum,t.community_id,t.community_id communityId,t.id_card, t.id_card idCard
- FROM building_room r,building_owner_room_rel orr,building_owner t
- WHERE r.`room_id` = orr.`room_id`
- AND orr.`owner_id` = t.`owner_id`
- <if test="roomId !=null and roomId != ''">
- AND r.`room_id` = #{roomId}
- </if>
- <if test="roomIds != null ">
- and r.room_id in
- <foreach collection="roomIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- AND r.`status_cd` = '0'
- AND orr.`status_cd` = '0'
- AND t.`status_cd` = '0'
- </select>
- <!-- 根据停车位查询 -->
- <select id="queryOwnersByParkingSpace" parameterType="Map" resultType="Map">
- select ps.num,ps.ps_id psId,t.sex,t.name,t.link,t.status_cd,t.status_cd statusCd,t.remark,t.owner_id,t.owner_id
- ownerId,t.b_id,t.b_id bId,
- t.user_id,t.user_id userId,t.age,t.member_id,t.member_id memberId,
- t.owner_type_cd,t.owner_type_cd ownerTypeCd,t.id_card, t.id_card idCard
- from p_parking_space ps , owner_car oc,building_owner t
- where ps.ps_id = oc.ps_id
- and oc.owner_id = t.owner_id
- AND oc.`status_cd` = '0'
- AND ps.`status_cd` = '0'
- AND t.`status_cd` = '0'
- <if test="psIds != null ">
- and ps.ps_id in
- <foreach collection="psIds" item="item" open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <if test="psId !=null and psId != ''">
- AND ps.`ps_id` = #{psId}
- </if>
- </select>
- </mapper>
|