chengf
2025-08-19 c7255cb752c12bf5c0c5e2b8bac0ad82d4cdf71b
java110-db/src/main/resources/mapper/user/OwnerServiceDaoImplMapper.xml
@@ -6,9 +6,9 @@
    <!-- 保存业主信息 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 -->
@@ -354,6 +354,9 @@
        <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>