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