Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
de4a093d
Commit
de4a093d
authored
Nov 12, 2024
by
朱晨阳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口参数修改
parent
678f7b07
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
57 additions
and
10 deletions
+57
-10
WorkOrderPage.java
.../yeejoin/amos/boot/module/hygf/api/dto/WorkOrderPage.java
+6
-0
AcceptanceCheckMapper.xml
...src/main/resources/mapper/mysql/AcceptanceCheckMapper.xml
+6
-0
BasicGridAcceptanceMapper.xml
...main/resources/mapper/mysql/BasicGridAcceptanceMapper.xml
+6
-0
FinancingInfoMapper.xml
...i/src/main/resources/mapper/mysql/FinancingInfoMapper.xml
+10
-0
WorkOrderMapper.xml
...f-api/src/main/resources/mapper/mysql/WorkOrderMapper.xml
+5
-0
AcceptanceCheckController.java
...module/hygf/biz/controller/AcceptanceCheckController.java
+4
-2
BasicGridAcceptanceController.java
...le/hygf/biz/controller/BasicGridAcceptanceController.java
+5
-3
FinancingInfoController.java
...t/module/hygf/biz/controller/FinancingInfoController.java
+5
-2
AcceptanceCheckServiceImpl.java
...ule/hygf/biz/service/impl/AcceptanceCheckServiceImpl.java
+3
-1
BasicGridAcceptanceServiceImpl.java
...hygf/biz/service/impl/BasicGridAcceptanceServiceImpl.java
+3
-1
FinancingInfoServiceImpl.java
...odule/hygf/biz/service/impl/FinancingInfoServiceImpl.java
+4
-1
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/java/com/yeejoin/amos/boot/module/hygf/api/dto/WorkOrderPage.java
View file @
de4a093d
...
@@ -23,6 +23,12 @@ public class WorkOrderPage {
...
@@ -23,6 +23,12 @@ public class WorkOrderPage {
@ApiModelProperty
(
value
=
"农户信息编号"
)
@ApiModelProperty
(
value
=
"农户信息编号"
)
private
String
peasantHouseholdNo
;
private
String
peasantHouseholdNo
;
@ApiModelProperty
(
value
=
"开发商"
)
private
String
developerName
;
@ApiModelProperty
(
value
=
"区域公司"
)
private
String
regionalCompaniesName
;
@ApiModelProperty
(
value
=
"派工单编号"
)
@ApiModelProperty
(
value
=
"派工单编号"
)
private
String
workOrderNum
;
private
String
workOrderNum
;
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/AcceptanceCheckMapper.xml
View file @
de4a093d
...
@@ -47,6 +47,12 @@
...
@@ -47,6 +47,12 @@
<if
test=
"map.amosDealerId!=null and map.amosDealerId!=''"
>
<if
test=
"map.amosDealerId!=null and map.amosDealerId!=''"
>
and hygf_work_order.amos_dealer_id = #{map.amosDealerId}
and hygf_work_order.amos_dealer_id = #{map.amosDealerId}
</if>
</if>
<if
test=
"map.developerName!=null and map.developerName!=''"
>
and hph.developer_name like concat('%',#{map.developerName},'%')
</if>
<if
test=
"map.regionalCompaniesName!=null and map.regionalCompaniesName!=''"
>
and hph.regional_companies_name like concat('%',#{map.regionalCompaniesName},'%')
</if>
<if
test=
"map.regionCompanyId!=null and map.regionCompanyId!=''"
>
<if
test=
"map.regionCompanyId!=null and map.regionCompanyId!=''"
>
and hygf_work_order.region_company_id =#{map.regionCompanyId}
and hygf_work_order.region_company_id =#{map.regionCompanyId}
</if>
</if>
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/BasicGridAcceptanceMapper.xml
View file @
de4a093d
...
@@ -61,6 +61,12 @@
...
@@ -61,6 +61,12 @@
<if
test=
"map.powerStationCode!=null and map.powerStationCode!=''"
>
<if
test=
"map.powerStationCode!=null and map.powerStationCode!=''"
>
and hph.peasant_household_no like concat('%',#{map.powerStationCode},'%')
and hph.peasant_household_no like concat('%',#{map.powerStationCode},'%')
</if>
</if>
<if
test=
"map.developerName!=null and map.developerName!=''"
>
and hph.developer_name like concat('%',#{map.developerName},'%')
</if>
<if
test=
"map.regionalCompaniesName!=null and map.regionalCompaniesName!=''"
>
and hph.regional_companies_name like concat('%',#{map.regionalCompaniesName},'%')
</if>
<if
test=
"map.formType != null and map.formType!=''"
>
<if
test=
"map.formType != null and map.formType!=''"
>
AND hbga.grid_status IN ('2', '3', '4')
AND hbga.grid_status IN ('2', '3', '4')
</if>
</if>
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/FinancingInfoMapper.xml
View file @
de4a093d
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
CONCAT(info.disbursement_money,'') as disbursementMoney,
CONCAT(info.disbursement_money,'') as disbursementMoney,
hph.regional_companies_code,
hph.regional_companies_code,
hph.developer_code,
hph.developer_code,
hph.developer_name developerName,
hph.is_history isHistory,
hph.is_history isHistory,
info.financing_companies_name financingCompaniesName
info.financing_companies_name financingCompaniesName
FROM
FROM
...
@@ -29,6 +30,15 @@
...
@@ -29,6 +30,15 @@
<if
test=
"params.ownersName != null and params.ownersName !=''"
>
<if
test=
"params.ownersName != null and params.ownersName !=''"
>
and hph.owners_name like concat('%',#{params.ownersName},'%')
and hph.owners_name like concat('%',#{params.ownersName},'%')
</if>
</if>
<if
test=
"params.peasantHouseholdNo != null and params.peasantHouseholdNo !=''"
>
and hph.peasant_household_no like concat('%',#{params.peasantHouseholdNo},'%')
</if>
<if
test=
"params.developerName != null and params.developerName !=''"
>
and hph.developer_name like concat('%',#{params.developerName},'%')
</if>
<if
test=
"params.financingCompaniesName != null and params.financingCompaniesName !=''"
>
and info.financing_companies_name like concat('%',#{params.financingCompaniesName},'%')
</if>
<if
test=
"params.isHistory != null and params.isHistory !='' and params.type != 2 "
>
<if
test=
"params.isHistory != null and params.isHistory !='' and params.type != 2 "
>
and hph.is_history is not null
and hph.is_history is not null
</if>
</if>
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-api/src/main/resources/mapper/mysql/WorkOrderMapper.xml
View file @
de4a093d
...
@@ -73,6 +73,8 @@
...
@@ -73,6 +73,8 @@
select
select
hygf_peasant_household.sequence_nbr sequenceNbr,
hygf_peasant_household.sequence_nbr sequenceNbr,
hygf_peasant_household.peasant_household_no peasantHouseholdNo,
hygf_peasant_household.peasant_household_no peasantHouseholdNo,
hygf_peasant_household.developer_name developerName,
hygf_peasant_household.regional_companies_name regionalCompaniesName,
substring_index ( hygf_peasant_household.project_address_name, '/', 1 ) AS province,
substring_index ( hygf_peasant_household.project_address_name, '/', 1 ) AS province,
hygf_work_order.work_order_num workOrderNum,
hygf_work_order.work_order_num workOrderNum,
hygf_peasant_household.owners_name ownersName,
hygf_peasant_household.owners_name ownersName,
...
@@ -126,6 +128,9 @@
...
@@ -126,6 +128,9 @@
<if
test=
"dto.peasantHouseholdNo!=null and dto.peasantHouseholdNo!=''"
>
<if
test=
"dto.peasantHouseholdNo!=null and dto.peasantHouseholdNo!=''"
>
and hygf_peasant_household.peasant_household_no like concat(concat('%',#{dto.peasantHouseholdNo}),'%')
and hygf_peasant_household.peasant_household_no like concat(concat('%',#{dto.peasantHouseholdNo}),'%')
</if>
</if>
<if
test=
"dto.constructionRegionManager!=null and dto.constructionRegionManager!=''"
>
and hygf_work_order.construction_region_manager like concat(concat('%',#{dto.constructionRegionManager}),'%')
</if>
<if
test=
"dto.ownersName!=null and dto.ownersName!=''"
>
<if
test=
"dto.ownersName!=null and dto.ownersName!=''"
>
and hygf_peasant_household.owners_name like concat(concat('%',#{dto.ownersName}),'%')
and hygf_peasant_household.owners_name like concat(concat('%',#{dto.ownersName}),'%')
</if>
</if>
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/AcceptanceCheckController.java
View file @
de4a093d
...
@@ -206,7 +206,9 @@ public class AcceptanceCheckController extends BaseController {
...
@@ -206,7 +206,9 @@ public class AcceptanceCheckController extends BaseController {
@RequestParam
(
required
=
false
,
value
=
"acceptanceCheckStatus"
)
String
acceptanceCheckStatus
,
@RequestParam
(
required
=
false
,
value
=
"acceptanceCheckStatus"
)
String
acceptanceCheckStatus
,
@RequestParam
(
required
=
false
,
value
=
"type"
)
String
type
,
@RequestParam
(
required
=
false
,
value
=
"type"
)
String
type
,
@RequestParam
(
required
=
false
,
value
=
"acceptanceTime"
)
String
acceptanceTime
,
@RequestParam
(
required
=
false
,
value
=
"acceptanceTime"
)
String
acceptanceTime
,
@RequestParam
(
required
=
false
,
value
=
"province"
)
String
province
)
throws
Exception
{
@RequestParam
(
required
=
false
,
value
=
"province"
)
String
province
,
@RequestParam
(
required
=
false
,
value
=
"developerName"
)
String
developerName
,
@RequestParam
(
required
=
false
,
value
=
"regionalCompaniesName"
)
String
regionalCompaniesName
)
throws
Exception
{
//当前登录人所属场站
//当前登录人所属场站
// UserUnitInformationDto userUnitInformationDto=personnelBusinessMapper.getUserUnitInformationDto( getUserInfo().getUserId());
// UserUnitInformationDto userUnitInformationDto=personnelBusinessMapper.getUserUnitInformationDto( getUserInfo().getUserId());
...
@@ -235,7 +237,7 @@ public class AcceptanceCheckController extends BaseController {
...
@@ -235,7 +237,7 @@ public class AcceptanceCheckController extends BaseController {
basicGridNodes
.
add
(
"ys-zichan"
);
basicGridNodes
.
add
(
"ys-zichan"
);
}
}
}
}
Page
<
AcceptanceCheckDto
>
page
=
acceptanceCheckServiceImpl
.
selectPage
(
null
,
null
,
current
,
size
,
projectAddress
,
powerStationCode
,
ownersName
,
acceptanceCheckStatus
,
acceptanceTime
,
""
,
basicGridNodes
,
type
,
province
);
Page
<
AcceptanceCheckDto
>
page
=
acceptanceCheckServiceImpl
.
selectPage
(
null
,
null
,
current
,
size
,
projectAddress
,
powerStationCode
,
ownersName
,
acceptanceCheckStatus
,
acceptanceTime
,
""
,
basicGridNodes
,
type
,
province
,
developerName
,
regionalCompaniesName
);
//根据角色及当前节点判断是否有操作权限
//根据角色及当前节点判断是否有操作权限
if
(
basicGridNodes
!=
null
){
if
(
basicGridNodes
!=
null
){
for
(
AcceptanceCheckDto
e
:
page
.
getRecords
())
{
for
(
AcceptanceCheckDto
e
:
page
.
getRecords
())
{
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/BasicGridAcceptanceController.java
View file @
de4a093d
...
@@ -151,7 +151,9 @@ public class BasicGridAcceptanceController extends BaseController {
...
@@ -151,7 +151,9 @@ public class BasicGridAcceptanceController extends BaseController {
@RequestParam
(
required
=
false
,
value
=
"gridStatus"
)
String
gridStatus
,
@RequestParam
(
required
=
false
,
value
=
"gridStatus"
)
String
gridStatus
,
@RequestParam
(
required
=
false
,
value
=
"type"
)
String
type
,
@RequestParam
(
required
=
false
,
value
=
"type"
)
String
type
,
@RequestParam
(
required
=
false
,
value
=
"gridConnectionTime"
)
String
gridConnectionTime
,
@RequestParam
(
required
=
false
,
value
=
"gridConnectionTime"
)
String
gridConnectionTime
,
@RequestParam
(
required
=
false
,
value
=
"province"
)
String
province
)
throws
Exception
{
@RequestParam
(
required
=
false
,
value
=
"province"
)
String
province
,
@RequestParam
(
required
=
false
,
value
=
"developerName"
)
String
developerName
,
@RequestParam
(
required
=
false
,
value
=
"regionalCompaniesName"
)
String
regionalCompaniesName
)
throws
Exception
{
// 当前登录人所属场站
// 当前登录人所属场站
// UserUnitInformationDto userUnitInformationDto=personnelBusinessMapper.getUserUnitInformationDto( getUserInfo().getUserId());
// UserUnitInformationDto userUnitInformationDto=personnelBusinessMapper.getUserUnitInformationDto( getUserInfo().getUserId());
...
@@ -178,7 +180,7 @@ public class BasicGridAcceptanceController extends BaseController {
...
@@ -178,7 +180,7 @@ public class BasicGridAcceptanceController extends BaseController {
}
}
Page
<
BasicGridRecordDto
>
page
=
basicGridAcceptanceServiceImpl
.
selectPage
(
null
,
null
,
current
,
size
,
Page
<
BasicGridRecordDto
>
page
=
basicGridAcceptanceServiceImpl
.
selectPage
(
null
,
null
,
current
,
size
,
projectAddress
,
powerStationCode
,
ownersName
,
gridStatus
,
gridConnectionTime
,
""
,
basicGridNodes
,
type
,
projectAddress
,
powerStationCode
,
ownersName
,
gridStatus
,
gridConnectionTime
,
""
,
basicGridNodes
,
type
,
province
);
province
,
developerName
,
regionalCompaniesName
);
// 根据角色及当前节点判断是否有操作权限
// 根据角色及当前节点判断是否有操作权限
if
(
basicGridNodes
!=
null
)
{
if
(
basicGridNodes
!=
null
)
{
for
(
BasicGridRecordDto
e
:
page
.
getRecords
())
{
for
(
BasicGridRecordDto
e
:
page
.
getRecords
())
{
...
@@ -218,7 +220,7 @@ public class BasicGridAcceptanceController extends BaseController {
...
@@ -218,7 +220,7 @@ public class BasicGridAcceptanceController extends BaseController {
// 当前登录人所属场站
// 当前登录人所属场站
Page
<
BasicGridRecordDto
>
page
=
basicGridAcceptanceServiceImpl
.
selectPage
(
null
,
null
,
current
,
size
,
Page
<
BasicGridRecordDto
>
page
=
basicGridAcceptanceServiceImpl
.
selectPage
(
null
,
null
,
current
,
size
,
projectAddress
,
powerStationCode
,
ownersName
,
gridStatus
,
gridConnectionTime
,
"check"
,
null
,
null
,
province
);
projectAddress
,
powerStationCode
,
ownersName
,
gridStatus
,
gridConnectionTime
,
"check"
,
null
,
null
,
province
,
null
,
null
);
return
ResponseHelper
.
buildResponse
(
page
);
return
ResponseHelper
.
buildResponse
(
page
);
}
}
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/FinancingInfoController.java
View file @
de4a093d
...
@@ -167,11 +167,14 @@ public class FinancingInfoController extends BaseController {
...
@@ -167,11 +167,14 @@ public class FinancingInfoController extends BaseController {
@RequestParam
(
value
=
"batchNo"
,
required
=
false
)
String
batchNo
,
@RequestParam
(
value
=
"batchNo"
,
required
=
false
)
String
batchNo
,
@RequestParam
(
value
=
"isHistory"
,
required
=
false
)
String
isHistory
,
@RequestParam
(
value
=
"isHistory"
,
required
=
false
)
String
isHistory
,
@RequestParam
(
value
=
"ownersName"
,
required
=
false
)
String
ownersName
,
@RequestParam
(
value
=
"ownersName"
,
required
=
false
)
String
ownersName
,
@RequestParam
(
value
=
"projectAddress"
,
required
=
false
)
String
projectAddress
){
@RequestParam
(
value
=
"projectAddress"
,
required
=
false
)
String
projectAddress
,
@RequestParam
(
value
=
"peasantHouseholdNo"
,
required
=
false
)
String
peasantHouseholdNo
,
@RequestParam
(
value
=
"developerName"
,
required
=
false
)
String
developerName
,
@RequestParam
(
value
=
"financingCompaniesName"
,
required
=
false
)
String
financingCompaniesName
){
Page
<
Map
<
String
,
Object
>>
page
=
new
Page
<
Map
<
String
,
Object
>>();
Page
<
Map
<
String
,
Object
>>
page
=
new
Page
<
Map
<
String
,
Object
>>();
page
.
setCurrent
(
current
);
page
.
setCurrent
(
current
);
page
.
setSize
(
size
);
page
.
setSize
(
size
);
return
ResponseHelper
.
buildResponse
(
financingInfoServiceImpl
.
queryForFinancingInfoPage
(
page
,
type
,
status
,
regionalCompaniesCode
,
ownersName
,
region
,
batchNo
,
isHistory
,
projectAddress
));
return
ResponseHelper
.
buildResponse
(
financingInfoServiceImpl
.
queryForFinancingInfoPage
(
page
,
type
,
status
,
regionalCompaniesCode
,
ownersName
,
region
,
batchNo
,
isHistory
,
projectAddress
,
peasantHouseholdNo
,
developerName
,
financingCompaniesName
));
}
}
/**
/**
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/AcceptanceCheckServiceImpl.java
View file @
de4a093d
...
@@ -70,7 +70,7 @@ public class AcceptanceCheckServiceImpl extends BaseService<AcceptanceCheckDto,A
...
@@ -70,7 +70,7 @@ public class AcceptanceCheckServiceImpl extends BaseService<AcceptanceCheckDto,A
public
Page
<
AcceptanceCheckDto
>
selectPage
(
Long
regionCompanyId
,
Long
amosDealerId
,
int
current
,
int
size
,
public
Page
<
AcceptanceCheckDto
>
selectPage
(
Long
regionCompanyId
,
Long
amosDealerId
,
int
current
,
int
size
,
String
projectAddress
,
String
powerStationCode
,
String
ownersName
,
String
acceptanceCheckStatus
,
String
projectAddress
,
String
powerStationCode
,
String
ownersName
,
String
acceptanceCheckStatus
,
String
gridConnectionTime
,
String
formType
,
List
<
String
>
basicGridNodes
,
String
type
,
String
province
)
throws
Exception
{
String
gridConnectionTime
,
String
formType
,
List
<
String
>
basicGridNodes
,
String
type
,
String
province
,
String
developerName
,
String
regionalCompaniesName
)
throws
Exception
{
PageHelper
.
startPage
(
current
,
size
);
PageHelper
.
startPage
(
current
,
size
);
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
Date
date
=
null
;
Date
date
=
null
;
...
@@ -88,6 +88,8 @@ public class AcceptanceCheckServiceImpl extends BaseService<AcceptanceCheckDto,A
...
@@ -88,6 +88,8 @@ public class AcceptanceCheckServiceImpl extends BaseService<AcceptanceCheckDto,A
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"type"
,
type
);
map
.
put
(
"type"
,
type
);
map
.
put
(
"province"
,
province
);
map
.
put
(
"province"
,
province
);
map
.
put
(
"developerName"
,
developerName
);
map
.
put
(
"regionalCompaniesName"
,
regionalCompaniesName
);
List
<
AcceptanceCheckDto
>
list
=
acceptanceCheckMapper
.
selectPageList
(
map
);
List
<
AcceptanceCheckDto
>
list
=
acceptanceCheckMapper
.
selectPageList
(
map
);
if
(
list
!=
null
&&
list
.
size
()
>
0
)
{
if
(
list
!=
null
&&
list
.
size
()
>
0
)
{
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/BasicGridAcceptanceServiceImpl.java
View file @
de4a093d
...
@@ -100,7 +100,7 @@ public class BasicGridAcceptanceServiceImpl extends BaseService<BasicGridAccepta
...
@@ -100,7 +100,7 @@ public class BasicGridAcceptanceServiceImpl extends BaseService<BasicGridAccepta
public
Page
<
BasicGridRecordDto
>
selectPage
(
Long
regionCompanyId
,
Long
amosDealerId
,
int
current
,
int
size
,
public
Page
<
BasicGridRecordDto
>
selectPage
(
Long
regionCompanyId
,
Long
amosDealerId
,
int
current
,
int
size
,
String
projectAddress
,
String
powerStationCode
,
String
ownersName
,
String
gridStatus
,
String
projectAddress
,
String
powerStationCode
,
String
ownersName
,
String
gridStatus
,
String
gridConnectionTime
,
String
formType
,
List
<
String
>
basicGridNodes
,
String
type
,
String
province
)
String
gridConnectionTime
,
String
formType
,
List
<
String
>
basicGridNodes
,
String
type
,
String
province
,
String
developerName
,
String
regionalCompaniesName
)
throws
Exception
{
throws
Exception
{
PageHelper
.
startPage
(
current
,
size
);
PageHelper
.
startPage
(
current
,
size
);
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
...
@@ -119,6 +119,8 @@ public class BasicGridAcceptanceServiceImpl extends BaseService<BasicGridAccepta
...
@@ -119,6 +119,8 @@ public class BasicGridAcceptanceServiceImpl extends BaseService<BasicGridAccepta
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"basicGridNodes"
,
basicGridNodes
);
map
.
put
(
"type"
,
type
);
map
.
put
(
"type"
,
type
);
map
.
put
(
"province"
,
province
);
map
.
put
(
"province"
,
province
);
map
.
put
(
"developerName"
,
developerName
);
map
.
put
(
"regionalCompaniesName"
,
regionalCompaniesName
);
List
<
BasicGridRecordDto
>
list
=
basicGridAcceptanceMapper
.
selectPageList
(
map
);
List
<
BasicGridRecordDto
>
list
=
basicGridAcceptanceMapper
.
selectPageList
(
map
);
PageInfo
<
BasicGridRecordDto
>
page
=
new
PageInfo
(
list
);
PageInfo
<
BasicGridRecordDto
>
page
=
new
PageInfo
(
list
);
Page
<
BasicGridRecordDto
>
pageNew
=
new
Page
<>();
Page
<
BasicGridRecordDto
>
pageNew
=
new
Page
<>();
...
...
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 @
de4a093d
...
@@ -87,7 +87,7 @@ public class FinancingInfoServiceImpl extends BaseService<FinancingInfoDto, Fina
...
@@ -87,7 +87,7 @@ public class FinancingInfoServiceImpl extends BaseService<FinancingInfoDto, Fina
private
RedisLockUtil
redisLockUtil
;
private
RedisLockUtil
redisLockUtil
;
@UserLimits
@UserLimits
public
Page
<
Map
<
String
,
Object
>>
queryForFinancingInfoPage
(
Page
<
Map
<
String
,
Object
>>
page
,
String
type
,
String
status
,
String
regionalCompaniesCode
,
String
ownersName
,
String
region
,
String
batchNo
,
String
isHistory
,
String
projectAddress
)
{
public
Page
<
Map
<
String
,
Object
>>
queryForFinancingInfoPage
(
Page
<
Map
<
String
,
Object
>>
page
,
String
type
,
String
status
,
String
regionalCompaniesCode
,
String
ownersName
,
String
region
,
String
batchNo
,
String
isHistory
,
String
projectAddress
,
String
peasantHouseholdNo
,
String
developerName
,
String
financingCompaniesName
)
{
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
StdUserEmpower
orgCode
=
(
StdUserEmpower
)
redisUtils
.
get
(
"Emp_"
+
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
()));
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
List
<
String
>
amosOrgCodes
=
orgCode
.
getAmosOrgCode
();
...
@@ -102,6 +102,9 @@ public class FinancingInfoServiceImpl extends BaseService<FinancingInfoDto, Fina
...
@@ -102,6 +102,9 @@ public class FinancingInfoServiceImpl extends BaseService<FinancingInfoDto, Fina
params
.
put
(
"isHistory"
,
isHistory
);
params
.
put
(
"isHistory"
,
isHistory
);
params
.
put
(
"region"
,
region
);
params
.
put
(
"region"
,
region
);
params
.
put
(
"projectAddress"
,
projectAddress
);
params
.
put
(
"projectAddress"
,
projectAddress
);
params
.
put
(
"peasantHouseholdNo"
,
peasantHouseholdNo
);
params
.
put
(
"developerName"
,
developerName
);
params
.
put
(
"financingCompaniesName"
,
financingCompaniesName
);
// 1 投融人员 2.融资 3经销商管理员
// 1 投融人员 2.融资 3经销商管理员
switch
(
type
)
{
switch
(
type
)
{
case
"1"
:
case
"1"
:
...
...
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