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
96508087
Commit
96508087
authored
Apr 07, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
融资机构树
parent
c2cf37d0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
1 deletion
+26
-1
FinancingInfoMapper.java
...amos/boot/module/hygf/api/mapper/FinancingInfoMapper.java
+2
-0
FinancingInfoMapper.xml
...i/src/main/resources/mapper/mysql/FinancingInfoMapper.xml
+8
-0
FinancingInfoController.java
...t/module/hygf/biz/controller/FinancingInfoController.java
+9
-0
FinancingRectificationOrderController.java
...biz/controller/FinancingRectificationOrderController.java
+1
-1
FinancingInfoServiceImpl.java
...odule/hygf/biz/service/impl/FinancingInfoServiceImpl.java
+6
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/mapper/FinancingInfoMapper.java
View file @
96508087
...
...
@@ -21,4 +21,6 @@ public interface FinancingInfoMapper extends BaseMapper<FinancingInfo> {
FinancingInfoDto
selectDataInfo
(
@Param
(
"peasantHouseholdId"
)
Long
peasantHouseholdId
);
List
<
Map
<
String
,
Object
>>
selectOrgList
();
}
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/FinancingInfoMapper.xml
View file @
96508087
...
...
@@ -52,4 +52,12 @@
WHERE
hfi.peasant_household_id = #{peasantHouseholdId}
</select>
<select
id=
"selectOrgList"
resultType=
"java.util.Map"
>
select
*
from
privilege_company
where
PARENT_ID = (select SEQUENCE_NBR from privilege_company where COMPANY_NAME = '融资机构')
</select>
</mapper>
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/FinancingInfoController.java
View file @
96508087
...
...
@@ -153,4 +153,13 @@ public class FinancingInfoController extends BaseController {
financingInfoServiceImpl
.
execueFlow
(
params
);
return
CommonResponseNewUtil
.
success
();
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"融资机构列表"
,
notes
=
"融资机构列表"
)
@GetMapping
(
value
=
"/orgList"
)
public
ResponseModel
<
List
<
Map
<
String
,
Object
>>>
orgList
()
{
return
CommonResponseNewUtil
.
success
(
financingInfoServiceImpl
.
selectOrgList
());
}
}
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/FinancingRectificationOrderController.java
View file @
96508087
...
...
@@ -91,7 +91,7 @@ public class FinancingRectificationOrderController extends BaseController {
if
(!
StringUtils
.
isEmpty
(
dto
.
getRectificationPhoto
())){
dto
.
setRectificationPhotos
(
JSONArray
.
parseArray
(
dto
.
getRectificationPhoto
()));
}
return
ResponseHelper
.
buildResponse
(
financingRectificationOrderServiceImpl
.
queryBySeq
(
sequenceNbr
)
);
return
ResponseHelper
.
buildResponse
(
dto
);
}
/**
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/FinancingInfoServiceImpl.java
View file @
96508087
...
...
@@ -253,4 +253,9 @@ public class FinancingInfoServiceImpl extends BaseService<FinancingInfoDto,Finan
}
public
List
<
Map
<
String
,
Object
>>
selectOrgList
()
{
return
this
.
getBaseMapper
().
selectOrgList
();
}
}
\ No newline at end of file
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