Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-finance
Overview
Overview
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
base_platform_enterprise
gic-platform-finance
Commits
5fc3a761
Commit
5fc3a761
authored
Sep 10, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
转账审批添加两个字段:回调接口路径和回调接口名称。如果需要回调
parent
a5178387
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
5 deletions
+35
-5
TransferAccountsApprovalDTO.java
...java/com/gic/finance/dto/TransferAccountsApprovalDTO.java
+25
-0
TransferAccountsApprovalApiService.java
...c/finance/service/TransferAccountsApprovalApiService.java
+10
-5
No files found.
gic-platform-finance-api/src/main/java/com/gic/finance/dto/TransferAccountsApprovalDTO.java
View file @
5fc3a761
...
...
@@ -146,6 +146,15 @@ public class TransferAccountsApprovalDTO implements Serializable{
* 5:套餐包 4:拓展包 3:服务 2:短信套餐包 1:充值
*/
private
Integer
orderType
;
/**
* 回调接口路径,例如 com.gic.enterprise.service.BillingPayInfoApiService
*/
private
String
callbackInterface
;
/**
* 回调接口名称,例如 offlineCallBack
*/
private
String
callbackMethod
;
public
Integer
getTransferApprovalId
()
{
return
transferApprovalId
;
...
...
@@ -330,4 +339,20 @@ public class TransferAccountsApprovalDTO implements Serializable{
public
void
setOrderType
(
Integer
orderType
)
{
this
.
orderType
=
orderType
;
}
public
String
getCallbackInterface
()
{
return
callbackInterface
;
}
public
void
setCallbackInterface
(
String
callbackInterface
)
{
this
.
callbackInterface
=
callbackInterface
;
}
public
String
getCallbackMethod
()
{
return
callbackMethod
;
}
public
void
setCallbackMethod
(
String
callbackMethod
)
{
this
.
callbackMethod
=
callbackMethod
;
}
}
gic-platform-finance-api/src/main/java/com/gic/finance/service/TransferAccountsApprovalApiService.java
View file @
5fc3a761
...
...
@@ -17,7 +17,8 @@ public interface TransferAccountsApprovalApiService {
/**
* 充值类型 发起审批 <br>
* 商户名称、公司名称、公司logo 发起方姓名 <br>
* 这数据如果有,需要传,如果没有,我默认给值
* 这数据如果有,需要传,如果没有,我默认给值 <br>
* 如果有回调函数,需要传递 回调接口路径、回调接口名称 两个参数
* @Title: rechargeInitiateApproval
* @Description:
* @author guojuxing
...
...
@@ -29,7 +30,8 @@ public interface TransferAccountsApprovalApiService {
/**
* 短信套餐包类型 发起审批 <br>
* 商户名称、公司名称、公司logo 发起方姓名 <br>
* 这数据如果有,需要传,如果没有,我默认给值
* 这数据如果有,需要传,如果没有,我默认给值 <br>
* 如果有回调函数,需要传递 回调接口路径、回调接口名称 两个参数
* @Title: smsInitiateApproval
* @Description:
* @author guojuxing
...
...
@@ -41,7 +43,8 @@ public interface TransferAccountsApprovalApiService {
/**
* 服务类型 发起审批 <br>
* 商户名称、公司名称、公司logo 发起方姓名 <br>
* 这数据如果有,需要传,如果没有,我默认给值
* 这数据如果有,需要传,如果没有,我默认给值 <br>
* 如果有回调函数,需要传递 回调接口路径、回调接口名称 两个参数
* @Title: serviceInitiateApproval
* @Description:
* @author guojuxing
...
...
@@ -53,7 +56,8 @@ public interface TransferAccountsApprovalApiService {
/**
* 拓展包类型 发起审批 <br>
* 商户名称、公司名称、公司logo 发起方姓名 <br>
* 这数据如果有,需要传,如果没有,我默认给值
* 这数据如果有,需要传,如果没有,我默认给值 <br>
* 如果有回调函数,需要传递 回调接口路径、回调接口名称 两个参数
* @Title: extensionPackageInitiateApproval
* @Description:
* @author guojuxing
...
...
@@ -65,7 +69,8 @@ public interface TransferAccountsApprovalApiService {
/**
* 套餐包类型 发起审批 <br>
* 商户名称、公司名称、公司logo 发起方姓名 <br>
* 这数据如果有,需要传,如果没有,我默认给值
* 这数据如果有,需要传,如果没有,我默认给值 <br>
* 如果有回调函数,需要传递 回调接口路径、回调接口名称 两个参数
* @Title: packageInitiateApproval
* @Description:
* @author guojuxing
...
...
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