Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-support-rlwx
Project
Project
Details
Activity
Releases
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
rl
hls-support-rlwx
Commits
ed77b80b
Commit
ed77b80b
authored
Oct 23, 2024
by
胡建龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] 中登网接口升级
parent
1e30c86f
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
427 additions
and
0 deletions
+427
-0
ZdwNewWsRequestsController.java
...zhongDengWang/controllers/ZdwNewWsRequestsController.java
+51
-0
FndZhongDengLines.java
...ava/com/hand/app/zhongDengWang/dto/FndZhongDengLines.java
+9
-0
IZdwNewWsRequestsService.java
...d/app/zhongDengWang/service/IZdwNewWsRequestsService.java
+11
-0
ZdwNewWsRequestsServiceImpl.java
...ongDengWang/service/impl/ZdwNewWsRequestsServiceImpl.java
+356
-0
No files found.
core/src/main/java/com/hand/app/zhongDengWang/controllers/ZdwNewWsRequestsController.java
0 → 100644
View file @
ed77b80b
/*
* Copyright (C), 2018-2021
* FileName: ZdwWsRequestsController
* Author: lsy
* Date: 2021/8/3 16:37
* Description:
* History:
* <author> <time> <version> <desc>
* lishuangyi 修改时间 版本号 描述
*/
package
com
.
hand
.
app
.
zhongDengWang
.
controllers
;
import
com.alibaba.fastjson.JSONObject
;
import
com.hand.app.zhongDengWang.service.IZdwNewWsRequestsService
;
import
com.hand.app.zhongDengWang.service.IZdwWsRequestsService
;
import
com.hand.hap.core.IRequest
;
import
com.hand.hap.system.controllers.BaseController
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
javax.servlet.http.HttpServletRequest
;
/**
* 〈〉
*
* @author 27214
* @create 2021/8/3
* @since 1.0.0
*/
@Controller
@RequestMapping
(
value
=
{
"/r/api"
,
"/"
})
public
class
ZdwNewWsRequestsController
extends
BaseController
{
@Autowired
private
IZdwNewWsRequestsService
service
;
/**
* 中登网融资租赁-登记入口
**/
@RequestMapping
(
value
=
"/zdw/new/service/register/init"
)
@ResponseBody
public
JSONObject
initRegister
(
HttpServletRequest
request
,
@RequestBody
(
required
=
true
)
JSONObject
params
)
{
IRequest
requestContext
=
createRequestContext
(
request
);
return
service
.
initRegisterService
(
requestContext
,
params
);
}
}
\ No newline at end of file
core/src/main/java/com/hand/app/zhongDengWang/dto/FndZhongDengLines.java
View file @
ed77b80b
...
...
@@ -81,6 +81,8 @@ public class FndZhongDengLines extends BaseDTO {
private
String
typebz
;
private
String
requestJson
;
public
void
setLineId
(
Long
lineId
)
{
this
.
lineId
=
lineId
;
...
...
@@ -266,4 +268,11 @@ public class FndZhongDengLines extends BaseDTO {
return
typebz
;
}
public
String
getRequestJson
()
{
return
requestJson
;
}
public
void
setRequestJson
(
String
requestJson
)
{
this
.
requestJson
=
requestJson
;
}
}
core/src/main/java/com/hand/app/zhongDengWang/service/IZdwNewWsRequestsService.java
0 → 100644
View file @
ed77b80b
package
com
.
hand
.
app
.
zhongDengWang
.
service
;
import
com.alibaba.fastjson.JSONObject
;
import
com.hand.hap.core.IRequest
;
import
com.hand.hap.core.ProxySelf
;
public
interface
IZdwNewWsRequestsService
extends
ProxySelf
<
IZdwNewWsRequestsService
>{
JSONObject
initRegisterService
(
IRequest
request
,
JSONObject
params
);
}
\ No newline at end of file
core/src/main/java/com/hand/app/zhongDengWang/service/impl/ZdwNewWsRequestsServiceImpl.java
0 → 100644
View file @
ed77b80b
This diff is collapsed.
Click to expand it.
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