Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
b1050609
Commit
b1050609
authored
Jan 20, 2026
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:(大屏):大屏数据处理接口修改
parent
8d2ad62a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
IdxBizJgUseInfoMapper.java
...mos/boot/module/ymt/api/mapper/IdxBizJgUseInfoMapper.java
+2
-0
IdxBizJgUseInfoMapper.xml
...t-api/src/main/resources/mapper/IdxBizJgUseInfoMapper.xml
+13
-0
No files found.
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/java/com/yeejoin/amos/boot/module/ymt/api/mapper/IdxBizJgUseInfoMapper.java
View file @
b1050609
...
...
@@ -55,5 +55,7 @@ public interface IdxBizJgUseInfoMapper extends CustomBaseMapper<IdxBizJgUseInfo>
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
);
}
amos-boot-system-tzs/amos-boot-module-ymt/amos-boot-module-ymt-api/src/main/resources/mapper/IdxBizJgUseInfoMapper.xml
View file @
b1050609
...
...
@@ -308,4 +308,17 @@
FROM idx_biz_jg_use_info ibjui
JOIN idx_biz_jg_other_info joi ON ibjui."RECORD" = joi."RECORD"
</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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment