金林湾bug修复

This commit is contained in:
guo 2023-09-11 16:09:27 +08:00
parent 2569dc486b
commit ff55e03b4c

View File

@ -1,14 +1,13 @@
<?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="com.zhgd.xmgl.modules.project.mapper.ProgressPlanBidSectionMapper">
<select id="selectProgressPlanBidSectionList"
resultType="com.zhgd.xmgl.modules.project.entity.ProgressPlanBidSection">
SELECT *
from progress_plan_bid_section
WHERE project_sn = #{projectSn}
<if test="projectfName != null and projectfName != ''">
and projectf_name = #{projectfName}
and projectf_name like concat('%', #{projectfName}, '%')
</if>
</select>
</mapper>