Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
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
fulixin
dsk-operate-sys-cscec
Commits
e582487a
Commit
e582487a
authored
May 16, 2024
by
liuChang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'V20231129-中建一局二公司' of 192.168.60.201:root/dsk-operate-sys into V20231129-中建一局二公司
parents
fe9f346e
5872b3de
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
122 additions
and
49 deletions
+122
-49
CustomerInfoController.java
...java/com/dsk/cscec/controller/CustomerInfoController.java
+8
-2
ICustomerInfoService.java
...main/java/com/dsk/cscec/service/ICustomerInfoService.java
+5
-0
CustomerInfoServiceImpl.java
...a/com/dsk/cscec/service/impl/CustomerInfoServiceImpl.java
+53
-16
EnterpriseCreditController.java
...va/com/dsk/jsk/controller/EnterpriseCreditController.java
+30
-17
EnterpriseCreditChinaPageBody.java
...ava/com/dsk/jsk/domain/EnterpriseCreditChinaPageBody.java
+2
-2
EnterpriseCreditService.java
...ain/java/com/dsk/jsk/service/EnterpriseCreditService.java
+24
-12
No files found.
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/controller/CustomerInfoController.java
View file @
e582487a
...
...
@@ -20,6 +20,7 @@ import org.springframework.web.bind.annotation.*;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.List
;
import
java.util.Map
;
/**
* 供应商相关
...
...
@@ -78,7 +79,12 @@ public class CustomerInfoController extends BaseController {
return
iCustomerInfoService
.
queryCooperationList
(
bo
,
query
);
}
/**
* 查询供应商基本情况
*/
@GetMapping
(
"/queryBasicInfo"
)
public
R
<
Map
<
String
,
Long
>>
queryBasicInfo
()
{
return
R
.
ok
(
iCustomerInfoService
.
queryBasicInfo
());
}
}
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/service/ICustomerInfoService.java
View file @
e582487a
...
...
@@ -59,4 +59,9 @@ public interface ICustomerInfoService extends IService<DCustomer> {
* @return
*/
Map
<
String
,
Object
>
cooperationStatistic
(
String
companyName
);
/**
* 查询供应商基本情况
*/
Map
<
String
,
Long
>
queryBasicInfo
();
}
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/service/impl/CustomerInfoServiceImpl.java
View file @
e582487a
...
...
@@ -54,23 +54,23 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
@Override
public
TableDataInfo
<
CustomerInfoVo
>
queryPageList
(
CustomerInfoBo
bo
,
PageQuery
query
)
{
if
(
"劳务分包"
.
equals
(
bo
.
getCustomerClass
()))
{
if
(
"劳务分包"
.
equals
(
bo
.
getCustomerClass
()))
{
bo
.
setServiceTeamLogo
(
"N"
);
}
if
(
"劳务分包队伍"
.
equals
(
bo
.
getCustomerClass
()))
{
if
(
"劳务分包队伍"
.
equals
(
bo
.
getCustomerClass
()))
{
bo
.
setCustomerClass
(
"劳务分包"
);
bo
.
setServiceTeamLogo
(
"Y"
);
}
Page
<
CustomerInfoVo
>
page
=
baseMapper
.
queryListByType
(
query
.
build
(),
bo
);
if
(
CollectionUtils
.
isNotEmpty
(
page
.
getRecords
()))
{
page
.
getRecords
().
parallelStream
().
forEach
(
item
->
{
page
.
getRecords
().
parallelStream
().
forEach
(
item
->
{
DCustomerListVo
vo
=
subcontractMapper
.
selectStatisticByCustomerId
(
item
.
getCustomerId
());
//企业合作数量
item
.
setEnterpriseCooperationCount
(
vo
.
getEnterpriseCooperationCount
());
//项目合作数量
item
.
setProjectCooperationCount
(
vo
.
getProjectCooperationCount
());
//关键字标红
if
(!
ObjectUtils
.
isEmpty
(
bo
.
getCustomerName
()))
{
if
(!
ObjectUtils
.
isEmpty
(
bo
.
getCustomerName
()))
{
item
.
setCustomerName
(
StringUtils
.
markInRed
(
item
.
getCustomerName
(),
bo
.
getCustomerName
()));
}
try
{
...
...
@@ -80,11 +80,11 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
Integer
companyId
=
MapUtil
.
getInt
(
data
,
"jskEid"
);
item
.
setCompanyId
(
companyId
);
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"CustomerInfoServiceImpl.queryPageList() error:"
+
e
);
}
//关键字标红
if
(!
ObjectUtils
.
isEmpty
(
bo
.
getLeaderName
()))
{
if
(!
ObjectUtils
.
isEmpty
(
bo
.
getLeaderName
()))
{
item
.
setCustomerName
(
StringUtils
.
markInRed
(
item
.
getLeaderName
(),
bo
.
getLeaderName
()));
}
});
...
...
@@ -94,18 +94,18 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
@Override
public
CustomerApproveVo
queryApproveByBo
(
CustomerInfoBo
bo
)
{
if
(
ObjectUtil
.
isNull
(
bo
.
getCustomerKey
())
&&
StringUtil
.
isBlank
(
bo
.
getCustomerName
())
&&
StringUtil
.
isBlank
(
bo
.
getUnifySocialCode
()))
{
Assert
.
isTrue
(
false
,
"参数不能为空"
);
if
(
ObjectUtil
.
isNull
(
bo
.
getCustomerKey
())
&&
StringUtil
.
isBlank
(
bo
.
getCustomerName
())
&&
StringUtil
.
isBlank
(
bo
.
getUnifySocialCode
()))
{
Assert
.
isTrue
(
false
,
"参数不能为空"
);
}
LambdaQueryWrapper
<
DCustomer
>
lqw
=
Wrappers
.
lambdaQuery
();
lqw
.
eq
(
DCustomer:
:
getRecommendOrgId
,
AdvisoryBodyManageQueryConstants
.
LEVEL1_COMPANY_ID
);
lqw
.
eq
(
ObjectUtil
.
isNotNull
(
bo
.
getCustomerKey
()),
DCustomer:
:
getCustomerKey
,
bo
.
getCustomerKey
());
lqw
.
eq
(
StringUtil
.
isNotBlank
(
bo
.
getUnifySocialCode
()),
DCustomer:
:
getUnifySocialCode
,
bo
.
getUnifySocialCode
());
lqw
.
eq
(
StringUtil
.
isNotBlank
(
bo
.
getCustomerName
()),
DCustomer:
:
getCustomerName
,
bo
.
getCustomerName
());
lqw
.
eq
(
ObjectUtil
.
isNotNull
(
bo
.
getCustomerKey
()),
DCustomer:
:
getCustomerKey
,
bo
.
getCustomerKey
());
lqw
.
eq
(
StringUtil
.
isNotBlank
(
bo
.
getUnifySocialCode
()),
DCustomer:
:
getUnifySocialCode
,
bo
.
getUnifySocialCode
());
lqw
.
eq
(
StringUtil
.
isNotBlank
(
bo
.
getCustomerName
()),
DCustomer:
:
getCustomerName
,
bo
.
getCustomerName
());
lqw
.
orderByDesc
(
DCustomer:
:
getApproveDate2
);
lqw
.
last
(
"limit 1"
);
DCustomer
dCustomer
=
baseMapper
.
selectOne
(
lqw
);
if
(
ObjectUtil
.
isNotEmpty
(
dCustomer
))
{
if
(
ObjectUtil
.
isNotEmpty
(
dCustomer
))
{
//营业执照url
dCustomer
.
setBusinessLicenseList
(
baseMapper
.
selectBusinessLicense
(
dCustomer
.
getCustomerId
()));
//组织机构代码证url
...
...
@@ -133,7 +133,7 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
@Override
public
TableDataInfo
<
AdvisoryBodyVo
>
queryAdvisoryList
(
AdvisoryBodyBo
bo
,
PageQuery
query
)
{
bo
.
setContractOrgId
(
AdvisoryBodyManageQueryConstants
.
LEVEL1_COMPANY_ID
);
Page
<
AdvisoryBodyVo
>
page
=
advisoryBodyMapper
.
queryListByBo
(
query
.
build
(),
bo
);
Page
<
AdvisoryBodyVo
>
page
=
advisoryBodyMapper
.
queryListByBo
(
query
.
build
(),
bo
);
page
.
getRecords
().
parallelStream
().
forEach
(
vo
->
{
try
{
Map
<
String
,
Object
>
map
=
opportunityRadarService
.
enterpriseByName
(
vo
.
getOwnerName
());
...
...
@@ -157,11 +157,11 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
@Override
public
TableDataInfo
<
CustomerCooperationVo
>
queryCooperationList
(
CustomerCooperationBo
bo
,
PageQuery
query
)
{
if
(
StringUtil
.
isBlank
(
bo
.
getCustomerId
())
&&
StringUtil
.
isBlank
(
bo
.
getCustomerName
()))
{
Assert
.
isTrue
(
false
,
"供应商不能为空"
);
if
(
StringUtil
.
isBlank
(
bo
.
getCustomerId
())
&&
StringUtil
.
isBlank
(
bo
.
getCustomerName
()))
{
Assert
.
isTrue
(
false
,
"供应商不能为空"
);
}
bo
.
setSignOrgId
(
AdvisoryBodyManageQueryConstants
.
LEVEL1_COMPANY_ID
);
Page
<
CustomerCooperationVo
>
page
=
dSubcontractMapper
.
selectCooperationList
(
query
.
build
(),
bo
);
Page
<
CustomerCooperationVo
>
page
=
dSubcontractMapper
.
selectCooperationList
(
query
.
build
(),
bo
);
return
TableDataInfo
.
build
(
page
);
}
...
...
@@ -190,4 +190,41 @@ public class CustomerInfoServiceImpl extends ServiceImpl<DCustomerMapper, DCusto
// result.put("在施工程情况", 0);
return
result
;
}
/**
* 查询供应商基本情况
*/
@Override
public
Map
<
String
,
Long
>
queryBasicInfo
()
{
HashMap
<
String
,
Long
>
infoMap
=
new
HashMap
<>();
//专业分包数量
Long
zyfbCount
=
baseMapper
.
selectCount
(
new
LambdaQueryWrapper
<
DCustomer
>()
.
eq
(
DCustomer:
:
getRecommendOrgId
,
"F17305B4EA4444CBAB12892C7B99E475"
)
.
eq
(
DCustomer:
:
getCustomerClass
,
"专业分包"
));
//机械施工数量
Long
jxsgCount
=
baseMapper
.
selectCount
(
new
LambdaQueryWrapper
<
DCustomer
>()
.
eq
(
DCustomer:
:
getRecommendOrgId
,
"F17305B4EA4444CBAB12892C7B99E475"
)
.
eq
(
DCustomer:
:
getCustomerClass
,
"租赁"
));
//物资设备数量
Long
wzsbCount
=
baseMapper
.
selectCount
(
new
LambdaQueryWrapper
<
DCustomer
>()
.
eq
(
DCustomer:
:
getRecommendOrgId
,
"F17305B4EA4444CBAB12892C7B99E475"
)
.
eq
(
DCustomer:
:
getCustomerClass
,
"分供"
));
//劳务分包数量
Long
lwfbCount
=
baseMapper
.
selectCount
(
new
LambdaQueryWrapper
<
DCustomer
>()
.
eq
(
DCustomer:
:
getRecommendOrgId
,
"F17305B4EA4444CBAB12892C7B99E475"
)
.
eq
(
DCustomer:
:
getCustomerClass
,
"劳务分包"
)
.
eq
(
DCustomer:
:
getServiceTeamLogo
,
"N"
));
//劳务分包队伍数量
Long
lwfbdwCount
=
baseMapper
.
selectCount
(
new
LambdaQueryWrapper
<
DCustomer
>()
.
eq
(
DCustomer:
:
getRecommendOrgId
,
"F17305B4EA4444CBAB12892C7B99E475"
)
.
eq
(
DCustomer:
:
getCustomerClass
,
"劳务分包"
)
.
eq
(
DCustomer:
:
getServiceTeamLogo
,
"Y"
));
infoMap
.
put
(
"customerTotal"
,
zyfbCount
+
jxsgCount
+
wzsbCount
+
lwfbCount
+
lwfbdwCount
);
infoMap
.
put
(
"zyfbCount"
,
zyfbCount
);
infoMap
.
put
(
"jxsgCount"
,
jxsgCount
);
infoMap
.
put
(
"wzsbCount"
,
wzsbCount
);
infoMap
.
put
(
"lwfbCount"
,
lwfbCount
);
infoMap
.
put
(
"lwfbdwCount"
,
lwfbdwCount
);
return
infoMap
;
}
}
dsk-module/dsk-biz-api/src/main/java/com/dsk/jsk/controller/EnterpriseCreditController.java
View file @
e582487a
...
...
@@ -120,9 +120,9 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/select
PageChinaXzxkInfo
"
)
public
TableDataInfo
select
PageChinaXzxkInfo
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
PageChinaXzxkInfo
(
body
);
@PostMapping
(
value
=
"/select
ChinaXzxkPage
"
)
public
TableDataInfo
select
ChinaXzxkPage
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
ChinaXzxkPage
(
body
);
}
/***
...
...
@@ -132,7 +132,7 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/selectChinaXz
cf
/detail"
)
@PostMapping
(
value
=
"/selectChinaXz
xk
/detail"
)
public
R
selectChinaXzxkDetail
(
@RequestBody
@Valid
EnterpriseCreditChinaDetailBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
selectChinaXzxkDetail
(
body
);
}
...
...
@@ -144,9 +144,9 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/select
PageChinaXzcfInfo
"
)
public
TableDataInfo
select
PageChinaXzcfInfo
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
PageChinaXzcfInfo
(
body
);
@PostMapping
(
value
=
"/select
ChinaXzcfPage
"
)
public
TableDataInfo
select
ChinaXzcfPage
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
ChinaXzcfPage
(
body
);
}
/***
...
...
@@ -156,7 +156,7 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/selectChinaXzcf
D
etail"
)
@PostMapping
(
value
=
"/selectChinaXzcf
/d
etail"
)
public
R
selectChinaXzcfDetail
(
@RequestBody
@Valid
EnterpriseCreditChinaDetailBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
selectChinaXzcfDetail
(
body
);
}
...
...
@@ -168,11 +168,24 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/select
PageChinaNsxydjInfo
"
)
public
TableDataInfo
select
PageChinaNsxydjInfo
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
PageChinaNsxydjInfo
(
body
);
@PostMapping
(
value
=
"/select
ChinaNsxydjPage
"
)
public
TableDataInfo
select
ChinaNsxydjPage
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
ChinaNsxydjPage
(
body
);
}
/***
*@Description: 信用中国-诚实守信-海关高级认证企业
*@Param:
*@return: com.dsk.common.core.page.TableDataInfo
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/selectChinaHggjczqyPage"
)
public
TableDataInfo
selectChinaHggjczqyPage
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
selectChinaHggjczqyPage
(
body
);
}
/***
*@Description: 信用中国-诚实守信-严重失信主体名单
*@Param:
...
...
@@ -180,9 +193,9 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/select
PageChinaYzsxztmdInfo
"
)
public
TableDataInfo
select
PageChinaYzsxztmdInfo
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
PageChinaYzsxztmdInfo
(
body
);
@PostMapping
(
value
=
"/select
ChinaYzsxztmdPage
"
)
public
TableDataInfo
select
ChinaYzsxztmdPage
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
ChinaYzsxztmdPage
(
body
);
}
/***
...
...
@@ -192,9 +205,9 @@ public class EnterpriseCreditController {
*@Author: Dgm
*@date: 2024/5/13 14:24
*/
@PostMapping
(
value
=
"/select
PageChinaJyycInfo
"
)
public
TableDataInfo
select
PageChinaJyycInfo
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
PageChinaJyycInfo
(
body
);
@PostMapping
(
value
=
"/select
ChinaJyycPage
"
)
public
TableDataInfo
select
ChinaJyycPage
(
@RequestBody
@Valid
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
return
enterpriseCreditService
.
select
ChinaJyycPage
(
body
);
}
}
dsk-module/dsk-biz-api/src/main/java/com/dsk/jsk/domain/EnterpriseCreditChinaPageBody.java
View file @
e582487a
...
...
@@ -16,9 +16,9 @@ public class EnterpriseCreditChinaPageBody extends BasePage {
* 企业id
*/
@NotNull
(
message
=
"企业id不能为空"
)
private
Integer
c
ompanyI
d
;
private
Integer
c
i
d
;
public
boolean
isVaildCid
()
{
return
0
==
c
ompanyI
d
;
return
0
==
c
i
d
;
}
}
dsk-module/dsk-biz-api/src/main/java/com/dsk/jsk/service/EnterpriseCreditService.java
View file @
e582487a
...
...
@@ -145,43 +145,55 @@ public class EnterpriseCreditService {
return
dskOpenApiUtil
.
responsePage
(
map
);
}
public
TableDataInfo
selectPageChinaXzxkInfo
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
public
TableDataInfo
selectChinaXzxkPage
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
body
.
setPageSize
(
1000
);
if
(
body
.
isVaildCid
())
return
new
TableDataInfo
(
new
ArrayList
<>(),
0
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
api/jsk/enterpriseCredit/china/selectPageChinaXzxkInfo
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
operate/enterpriseCredit/selectChinaXzxkPage
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
}
public
R
selectChinaXzxkDetail
(
EnterpriseCreditChinaDetailBody
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
api/jsk/enterpriseCredit/china/selectChinaXzxkInfo
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
operate/enterpriseCredit/selectChinaXzxkDetail
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
public
TableDataInfo
selectPageChinaXzcfInfo
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
public
TableDataInfo
selectChinaXzcfPage
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
body
.
setPageSize
(
1000
);
if
(
body
.
isVaildCid
())
return
new
TableDataInfo
(
new
ArrayList
<>(),
0
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
api/jsk/enterpriseCredit/china/selectPageChinaXzcfInfo
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
operate/enterpriseCredit/selectChinaXzcfPage
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
}
public
R
selectChinaXzcfDetail
(
EnterpriseCreditChinaDetailBody
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
api/jsk/enterpriseCredit/china/selectChinaXzcfInfo
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
operate/enterpriseCredit/selectChinaXzcfDetail
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
public
TableDataInfo
selectPageChinaNsxydjInfo
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
public
TableDataInfo
selectChinaNsxydjPage
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
body
.
setPageSize
(
1000
);
if
(
body
.
isVaildCid
())
return
new
TableDataInfo
(
new
ArrayList
<>(),
0
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
api/jsk/enterpriseCredit/china/selectPageChinaNsxydjInfo
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
operate/enterpriseCredit/selectChinaNsxydjPage
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
}
public
TableDataInfo
selectPageChinaYzsxztmdInfo
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
public
TableDataInfo
selectChinaHggjczqyPage
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
body
.
setPageSize
(
1000
);
if
(
body
.
isVaildCid
())
return
new
TableDataInfo
(
new
ArrayList
<>(),
0
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
api/jsk/enterpriseCredit/china/selectPageChinaYzsxztmdInfo
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/
operate/enterpriseCredit/selectChinaHggjczqyPage
"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
}
public
TableDataInfo
selectPageChinaJyycInfo
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
public
TableDataInfo
selectChinaYzsxztmdPage
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
body
.
setPageSize
(
1000
);
if
(
body
.
isVaildCid
())
return
new
TableDataInfo
(
new
ArrayList
<>(),
0
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/api/jsk/enterpriseCredit/china/selectPageChinaJyycInfo"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseCredit/selectChinaYzsxztmdPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
}
public
TableDataInfo
selectChinaJyycPage
(
EnterpriseCreditChinaPageBody
body
)
throws
Exception
{
body
.
setPageSize
(
1000
);
if
(
body
.
isVaildCid
())
return
new
TableDataInfo
(
new
ArrayList
<>(),
0
);
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseCredit/selectChinaJyycPage"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
dskOpenApiUtil
.
responsePage
(
map
);
}
}
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