Commit b1050609 authored by 刘林's avatar 刘林

fix:(大屏):大屏数据处理接口修改

parent 8d2ad62a
...@@ -55,5 +55,7 @@ public interface IdxBizJgUseInfoMapper extends CustomBaseMapper<IdxBizJgUseInfo> ...@@ -55,5 +55,7 @@ public interface IdxBizJgUseInfoMapper extends CustomBaseMapper<IdxBizJgUseInfo>
List<String> selectEquipsClaimStatus(); List<String> selectEquipsClaimStatus();
List<String> selectEquips(@Param("equListCode") String equListCode, @Param("equCategoryCode") String equCategoryCode, @Param("orgCode") String orgCode);
List<String> selectUseInfoOfOneVersionWithParams(@Param("version") Integer version,@Param("params") Map<String, Object> params); List<String> selectUseInfoOfOneVersionWithParams(@Param("version") Integer version,@Param("params") Map<String, Object> params);
} }
...@@ -308,4 +308,17 @@ ...@@ -308,4 +308,17 @@
FROM idx_biz_jg_use_info ibjui FROM idx_biz_jg_use_info ibjui
JOIN idx_biz_jg_other_info joi ON ibjui."RECORD" = joi."RECORD" JOIN idx_biz_jg_other_info joi ON ibjui."RECORD" = joi."RECORD"
</select> </select>
<select id="selectEquips" resultType="java.lang.String">
SELECT s."RECORD" FROM "idx_biz_jg_supervision_info" s, idx_biz_jg_register_info r
where "ORG_BRANCH_CODE" like concat(#{orgCode},'%')
and s."RECORD" = r."RECORD"
<if test="equListCode != null and equListCode != ''">
AND r."EQU_LIST" = #{equListCode}
</if>
<if test="equCategoryCode != null and equCategoryCode != ''">
AND r."EQU_CATEGORY" = #{equCategoryCode}
</if>
</select>
</mapper> </mapper>
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