Commit c9b26dec authored by tianbo's avatar tianbo

fix(patrol): 修复计划查询中的SQL语法错误

- 修正了queryPlanListByOrgCode查询中多余的and关键字
parent 83f0e857
......@@ -160,7 +160,7 @@
</select>
<select id="queryPlanListByOrgCode" resultType="Map">
select p.id, p.name from p_plan p where p.is_delete = 0 and and b.biz_org_code like concat(#{loginOrgCode},'%')
select p.id, p.name from p_plan p where p.is_delete = 0 and p.biz_org_code like concat(#{loginOrgCode},'%')
</select>
<update id="initUpdatePlanStatus">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment