Commit 08e0ad1c authored by dengguangman's avatar dengguangman Committed by Administrator

-信用中国

Signed-off-by: Administrator's avatarAdministrator <admin@example.com>
parent 97d843a3
...@@ -120,9 +120,9 @@ public class EnterpriseCreditController { ...@@ -120,9 +120,9 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectPageChinaXzxkInfo") @PostMapping(value = "/selectChinaXzxkPage")
public TableDataInfo selectPageChinaXzxkInfo(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception { public TableDataInfo selectChinaXzxkPage(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception {
return enterpriseCreditService.selectPageChinaXzxkInfo(body); return enterpriseCreditService.selectChinaXzxkPage(body);
} }
/*** /***
...@@ -132,7 +132,7 @@ public class EnterpriseCreditController { ...@@ -132,7 +132,7 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectChinaXzcf/detail") @PostMapping(value = "/selectChinaXzxk/detail")
public R selectChinaXzxkDetail(@RequestBody @Valid EnterpriseCreditChinaDetailBody body) throws Exception { public R selectChinaXzxkDetail(@RequestBody @Valid EnterpriseCreditChinaDetailBody body) throws Exception {
return enterpriseCreditService.selectChinaXzxkDetail(body); return enterpriseCreditService.selectChinaXzxkDetail(body);
} }
...@@ -144,9 +144,9 @@ public class EnterpriseCreditController { ...@@ -144,9 +144,9 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectPageChinaXzcfInfo") @PostMapping(value = "/selectChinaXzcfPage")
public TableDataInfo selectPageChinaXzcfInfo(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception { public TableDataInfo selectChinaXzcfPage(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception {
return enterpriseCreditService.selectPageChinaXzcfInfo(body); return enterpriseCreditService.selectChinaXzcfPage(body);
} }
/*** /***
...@@ -156,7 +156,7 @@ public class EnterpriseCreditController { ...@@ -156,7 +156,7 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectChinaXzcfDetail") @PostMapping(value = "/selectChinaXzcf/detail")
public R selectChinaXzcfDetail(@RequestBody @Valid EnterpriseCreditChinaDetailBody body) throws Exception { public R selectChinaXzcfDetail(@RequestBody @Valid EnterpriseCreditChinaDetailBody body) throws Exception {
return enterpriseCreditService.selectChinaXzcfDetail(body); return enterpriseCreditService.selectChinaXzcfDetail(body);
} }
...@@ -168,11 +168,24 @@ public class EnterpriseCreditController { ...@@ -168,11 +168,24 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectPageChinaNsxydjInfo") @PostMapping(value = "/selectChinaNsxydjPage")
public TableDataInfo selectPageChinaNsxydjInfo(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception { public TableDataInfo selectChinaNsxydjPage(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception {
return enterpriseCreditService.selectPageChinaNsxydjInfo(body); return enterpriseCreditService.selectChinaNsxydjPage(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: 信用中国-诚实守信-严重失信主体名单 *@Description: 信用中国-诚实守信-严重失信主体名单
*@Param: *@Param:
...@@ -180,9 +193,9 @@ public class EnterpriseCreditController { ...@@ -180,9 +193,9 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectPageChinaYzsxztmdInfo") @PostMapping(value = "/selectChinaYzsxztmdPage")
public TableDataInfo selectPageChinaYzsxztmdInfo(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception { public TableDataInfo selectChinaYzsxztmdPage(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception {
return enterpriseCreditService.selectPageChinaYzsxztmdInfo(body); return enterpriseCreditService.selectChinaYzsxztmdPage(body);
} }
/*** /***
...@@ -192,9 +205,9 @@ public class EnterpriseCreditController { ...@@ -192,9 +205,9 @@ public class EnterpriseCreditController {
*@Author: Dgm *@Author: Dgm
*@date: 2024/5/13 14:24 *@date: 2024/5/13 14:24
*/ */
@PostMapping(value = "/selectPageChinaJyycInfo") @PostMapping(value = "/selectChinaJyycPage")
public TableDataInfo selectPageChinaJyycInfo(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception { public TableDataInfo selectChinaJyycPage(@RequestBody @Valid EnterpriseCreditChinaPageBody body) throws Exception {
return enterpriseCreditService.selectPageChinaJyycInfo(body); return enterpriseCreditService.selectChinaJyycPage(body);
} }
} }
...@@ -145,43 +145,49 @@ public class EnterpriseCreditService { ...@@ -145,43 +145,49 @@ public class EnterpriseCreditService {
return dskOpenApiUtil.responsePage(map); return dskOpenApiUtil.responsePage(map);
} }
public TableDataInfo selectPageChinaXzxkInfo(EnterpriseCreditChinaPageBody body) throws Exception{ public TableDataInfo selectChinaXzxkPage(EnterpriseCreditChinaPageBody body) throws Exception{
if (body.isVaildCid()) return new TableDataInfo(new ArrayList<>(), 0); 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); return dskOpenApiUtil.responsePage(map);
} }
public R selectChinaXzxkDetail(EnterpriseCreditChinaDetailBody body) throws Exception{ 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); return BeanUtil.toBean(map, R.class);
} }
public TableDataInfo selectPageChinaXzcfInfo(EnterpriseCreditChinaPageBody body) throws Exception{ public TableDataInfo selectChinaXzcfPage(EnterpriseCreditChinaPageBody body) throws Exception{
if (body.isVaildCid()) return new TableDataInfo(new ArrayList<>(), 0); 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); return dskOpenApiUtil.responsePage(map);
} }
public R selectChinaXzcfDetail(EnterpriseCreditChinaDetailBody body) throws Exception{ 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); return BeanUtil.toBean(map, R.class);
} }
public TableDataInfo selectPageChinaNsxydjInfo(EnterpriseCreditChinaPageBody body) throws Exception{ public TableDataInfo selectChinaNsxydjPage(EnterpriseCreditChinaPageBody body) throws Exception{
if (body.isVaildCid()) return new TableDataInfo(new ArrayList<>(), 0); 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); return dskOpenApiUtil.responsePage(map);
} }
public TableDataInfo selectPageChinaYzsxztmdInfo(EnterpriseCreditChinaPageBody body) throws Exception{ public TableDataInfo selectChinaHggjczqyPage(EnterpriseCreditChinaPageBody body) throws Exception{
if (body.isVaildCid()) return new TableDataInfo(new ArrayList<>(), 0); 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); return dskOpenApiUtil.responsePage(map);
} }
public TableDataInfo selectPageChinaJyycInfo(EnterpriseCreditChinaPageBody body) throws Exception{ public TableDataInfo selectChinaYzsxztmdPage(EnterpriseCreditChinaPageBody body) throws Exception{
if (body.isVaildCid()) return new TableDataInfo(new ArrayList<>(), 0); 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{
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); return dskOpenApiUtil.responsePage(map);
} }
} }
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