| | |
| | | <!-- 保存业主信息 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, state, owner_flag, address) |
| | | owner_type_cd, community_id, id_card, state, owner_flag, address,other_address) |
| | | values (#{operate}, #{sex}, #{name}, #{link}, #{remark}, #{ownerId}, #{bId}, #{userId}, #{age}, #{memberId}, |
| | | #{ownerTypeCd}, #{communityId}, #{idCard}, #{state}, #{ownerFlag}, #{address}) |
| | | #{ownerTypeCd}, #{communityId}, #{idCard}, #{state}, #{ownerFlag}, #{address},#{otherAddress}) |
| | | </insert> |
| | | |
| | | <!-- 查询业主信息(Business) add by wuxw 2018-07-03 --> |
| | |
| | | <if test="address !=null and address != ''"> |
| | | , t.address= #{address} |
| | | </if> |
| | | <if test="otherAddress !=null and otherAddress != ''"> |
| | | ,t.other_address= #{otherAddress} |
| | | </if> |
| | | <if test="remark !=null and remark != ''"> |
| | | , t.remark= #{remark} |
| | | </if> |