|
@@ -106,7 +106,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
LEFT JOIN large_plat_project b ON a.project_id = b.id
|
|
|
LEFT JOIN large_plat_app_org c ON b.app_org = c.app_org
|
|
|
WHERE
|
|
|
- a.del_flag = 0 and a.status = 1
|
|
|
+ a.del_flag = 0
|
|
|
AND b.del_flag = 0
|
|
|
AND c.del_flag = '0'
|
|
|
<if test="appOrg != '10001'">AND ( c.app_parent_org = #{appOrg} OR c.app_org = #{appOrg} )</if>
|
|
@@ -120,11 +120,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
LEFT JOIN large_plat_project b ON a.project_id = b.id
|
|
|
LEFT JOIN large_plat_app_org c ON b.app_org = c.app_org
|
|
|
WHERE
|
|
|
- a.del_flag = 0
|
|
|
+ a.del_flag = 0 and a.status = 1
|
|
|
AND b.del_flag = 0
|
|
|
AND c.del_flag = '0'
|
|
|
<if test="appOrg != '10001'">AND ( c.app_parent_org = #{appOrg} OR c.app_org = #{appOrg} )</if>
|
|
|
- AND a.`status` = '0'
|
|
|
</select>
|
|
|
|
|
|
<select id="getIssueListLastWeek" parameterType="String" resultMap="LargeIssueResult">
|