zhubaomin
2024-10-28 1e409f99905c894363248239b856bce6735fd3d5
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientMapper.xml
@@ -66,13 +66,13 @@
            <if test="blockId != null">
                bc.blockId = #{blockId,jdbcType=BIGINT} and
            </if>
            <if test="name != null">
            <if test="name != null and name != ''">
                bc.`name` like concat('%', #{name}, '%') and
            </if>
            <if test="num != null">
            <if test="num != null and num != ''">
                bc.num = #{num,jdbcType=VARCHAR} and
            </if>
            <if test="phone != null">
            <if test="phone != null and phone != ''">
                bc.phone = #{phone,jdbcType=VARCHAR} and
            </if>
        </trim>
@@ -336,4 +336,20 @@
        where id = #{id,jdbcType=BIGINT}
    </delete>
    <!--根据农户编号获取5级行政区划代码-->
    <select id="getAreaCodeByNum" resultType="com.dy.pipIrrGlobal.voBa.VoAreaCode">
        SELECT
            pro.num AS provinceId,
            cit.num AS cityId,
            con.num AS countryId,
            tow.num AS townId,
            vil.num AS villageId
        FROM ba_client cli
                 INNER JOIN ba_district con ON cli.countyId = con.id
                 INNER JOIN ba_district tow ON cli.townId = tow.id
                 INNER JOIN ba_district vil ON cli.villageId = vil.id
                 INNER JOIN ba_district cit ON cit.id = con.supperId
                 INNER JOIN ba_district pro ON pro.id = cit.supperId
        WHERE cli.num = #{clientNum}
    </select>
</mapper>