Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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-enterprise
Commits
eae92182
Commit
eae92182
authored
Feb 25, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
支付配置新增/删除/查询接口
parent
8e672613
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
19 deletions
+13
-19
AppPayController.java
...va/com/gic/operation/web/controller/AppPayController.java
+1
-1
AppVO.java
.../src/main/java/com/gic/operation/web/vo/apppay/AppVO.java
+12
-18
No files found.
gic-platform-operation-web/src/main/java/com/gic/operation/web/controller/AppPayController.java
View file @
eae92182
...
...
@@ -70,7 +70,7 @@ public class AppPayController {
@RequestMapping
(
"/list-app"
)
public
RestResponse
listApp
(
Integer
enterpriseId
)
{
return
ResultControllerUtils
.
commonResult
(
payConfigApiService
.
getApplets
(
enterpriseId
,
1
));
return
ResultControllerUtils
.
commonResult
(
payConfigApiService
.
getApplets
(
enterpriseId
,
1
)
,
AppVO
.
class
);
}
@RequestMapping
(
"/delete"
)
...
...
gic-platform-operation-web/src/main/java/com/gic/operation/web/vo/apppay/AppVO.java
View file @
eae92182
package
com
.
gic
.
operation
.
web
.
vo
.
apppay
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
java.io.Serializable
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
public
class
AppVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
4493556752806002351L
;
/**
* 服务商、服务号名称
*/
private
String
serverProviderName
;
private
String
name
;
/**
* 小程序配置id
*/
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
appletConfigI
d
;
private
Long
i
d
;
public
String
get
ServerProvider
Name
()
{
return
serverProviderN
ame
;
public
String
getName
()
{
return
n
ame
;
}
public
void
set
ServerProviderName
(
String
serverProviderN
ame
)
{
this
.
serverProviderName
=
serverProviderN
ame
;
public
void
set
Name
(
String
n
ame
)
{
this
.
name
=
n
ame
;
}
public
Long
get
AppletConfig
Id
()
{
return
appletConfigI
d
;
public
Long
getId
()
{
return
i
d
;
}
public
void
set
AppletConfigId
(
Long
appletConfigI
d
)
{
this
.
appletConfigId
=
appletConfigI
d
;
public
void
set
Id
(
Long
i
d
)
{
this
.
id
=
i
d
;
}
}
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