Commit 42f819b0 by zhiwj

指标说明

parent 17086353
......@@ -150,7 +150,9 @@
where t1.status = 1
and t2.enterprise_id = #{enterpriseId}
and t1.module_id = #{moduleId}
and t1.index_group_name = #{indexGroupName}
<if test="indexGroupName != null and indexGroupName != '' ">
and t1.index_group_name = #{indexGroupName}
</if>
and t2.index_status = 1
order by t2.sort
</select>
......@@ -169,7 +171,9 @@
where t1.status = 1
and t2.enterprise_id = #{enterpriseId}
and t1.module_id = #{moduleId}
and t1.index_group_name = #{indexGroupName}
<if test="indexGroupName != null and indexGroupName != '' ">
and t1.index_group_name = #{indexGroupName}
</if>
and t2.index_status = 1
and (t3.status = 1 or t3.status is null)
and (t3.classify_type = 1 or t3.classify_type is null)
......@@ -190,7 +194,9 @@
where t1.status = 1
and t2.enterprise_id = #{enterpriseId}
and t1.module_id = #{moduleId}
and t1.index_group_name = #{indexGroupName}
<if test="indexGroupName != null and indexGroupName != '' ">
and t1.index_group_name = #{indexGroupName}
</if>
and t2.index_status = 0
</select>
</mapper>
\ No newline at end of file
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