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
f4ef5a7a
Commit
f4ef5a7a
authored
Sep 02, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
转账审批详情添加字段:商户名称和公司名称
parent
8ba01148
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
74 additions
and
1 deletions
+74
-1
TransferApprovalRechargeVO.java
...va/com/gic/finance/web/vo/TransferApprovalRechargeVO.java
+37
-0
TransferApprovalSmsVO.java
...in/java/com/gic/finance/web/vo/TransferApprovalSmsVO.java
+37
-1
No files found.
gic-platform-finance-web/src/main/java/com/gic/finance/web/vo/TransferApprovalRechargeVO.java
View file @
f4ef5a7a
...
...
@@ -86,6 +86,19 @@ public class TransferApprovalRechargeVO implements Serializable{
*
*/
private
Date
createTime
;
/**
* 商户名称
*/
private
String
enterpriseName
;
/**
* 公司名称
*/
private
String
companyName
;
/**
* 到账金额
*/
private
Double
accountAmount
;
public
Integer
getTransferApprovalId
()
{
return
transferApprovalId
;
...
...
@@ -190,4 +203,28 @@ public class TransferApprovalRechargeVO implements Serializable{
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
String
getEnterpriseName
()
{
return
enterpriseName
;
}
public
void
setEnterpriseName
(
String
enterpriseName
)
{
this
.
enterpriseName
=
enterpriseName
;
}
public
String
getCompanyName
()
{
return
companyName
;
}
public
void
setCompanyName
(
String
companyName
)
{
this
.
companyName
=
companyName
;
}
public
Double
getAccountAmount
()
{
return
accountAmount
;
}
public
void
setAccountAmount
(
Double
accountAmount
)
{
this
.
accountAmount
=
accountAmount
;
}
}
gic-platform-finance-web/src/main/java/com/gic/finance/web/vo/TransferApprovalSmsVO.java
View file @
f4ef5a7a
...
...
@@ -4,7 +4,6 @@ import java.io.Serializable;
import
java.util.Date
;
import
com.gic.finance.constant.EnterprisePlatformTypeEnum
;
import
com.gic.finance.constant.InitiatorTypeEnum
;
import
com.gic.finance.constant.TransferAccountApprovalStatusEnum
;
import
com.gic.finance.web.utils.DateUtils
;
...
...
@@ -110,6 +109,19 @@ public class TransferApprovalSmsVO implements Serializable{
*
*/
private
Date
createTime
;
/**
* 商户名称
*/
private
String
enterpriseName
;
/**
* 公司名称
*/
private
String
companyName
;
/**
* 到账金额
*/
private
Double
accountAmount
;
public
Integer
getTransferApprovalId
()
{
return
transferApprovalId
;
...
...
@@ -254,4 +266,28 @@ public class TransferApprovalSmsVO implements Serializable{
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
public
String
getEnterpriseName
()
{
return
enterpriseName
;
}
public
void
setEnterpriseName
(
String
enterpriseName
)
{
this
.
enterpriseName
=
enterpriseName
;
}
public
String
getCompanyName
()
{
return
companyName
;
}
public
void
setCompanyName
(
String
companyName
)
{
this
.
companyName
=
companyName
;
}
public
Double
getAccountAmount
()
{
return
accountAmount
;
}
public
void
setAccountAmount
(
Double
accountAmount
)
{
this
.
accountAmount
=
accountAmount
;
}
}
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