guoshilong
2024-03-25 a6e044780082d6a6507f64edb9a5242b779fb6ee
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/mapper/TbProjectMapper.xml
@@ -251,4 +251,19 @@
            AND aab."p_ad_code" = #{params.adCode}
            </if>
    </select>
    <select id="getTbProjectInfo" resultType="cn.gistack.sm.sjztmd.entity.TbProject">
        SELECT
            *
        FROM SJZT_MD."tb_project"
        where 1=1
        <if test="params.cityCode != null and params.cityCode !=''">
            and "city_code"  = #{params.cityCode}
        </if>
        <if test="params.countyCode != null and params.countyCode !=''">
            and "county_code"  = #{params.countyCode}
        </if>
        <if test="params.tbYear != null and params.tbYear !=''">
            and "tb_year" = #{params.tbYear}
        </if>
    </select>
</mapper>