Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
a63b7168
Commit
a63b7168
authored
Jul 27, 2019
by
libin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
钱包提现
parent
2a37599f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
67 deletions
+67
-67
MyWalletCath.java
...om/github/wxiaoqi/security/admin/entity/MyWalletCath.java
+64
-66
WalletCathDetailVo.java
.../github/wxiaoqi/security/admin/vo/WalletCathDetailVo.java
+3
-0
MyWalletCathBiz.java
...om/github/wxiaoqi/security/admin/biz/MyWalletCathBiz.java
+0
-1
No files found.
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/entity/MyWalletCath.java
View file @
a63b7168
...
@@ -2,15 +2,15 @@ package com.github.wxiaoqi.security.admin.entity;
...
@@ -2,15 +2,15 @@ package com.github.wxiaoqi.security.admin.entity;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
javax.persistence.*
;
import
javax.persistence.*
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
/**
/**
* 钱包提现表
* 钱包提现表
*
*
* @author zjw
* @author zjw
* @email 18178966185@163.com
* @email 18178966185@163.com
* @date 2019-07-11 14:14:54
* @date 2019-07-11 14:14:54
...
@@ -18,102 +18,100 @@ import lombok.Data;
...
@@ -18,102 +18,100 @@ import lombok.Data;
@Data
@Data
@Table
(
name
=
"my_wallet_cath"
)
@Table
(
name
=
"my_wallet_cath"
)
public
class
MyWalletCath
implements
Serializable
{
public
class
MyWalletCath
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
/**
/**
*
主键ID
*
主键ID
*/
*/
@Id
@Id
@GeneratedValue
(
generator
=
"JDBC"
)
@GeneratedValue
(
generator
=
"JDBC"
)
@ApiModelProperty
(
"主键ID"
)
@ApiModelProperty
(
"主键ID"
)
private
Long
id
;
private
Long
id
;
/**
/**
*
用户iD
* 用户iD
*/
*/
@Column
(
name
=
"user_id"
)
@Column
(
name
=
"user_id"
)
@ApiModelProperty
(
value
=
"用户iD"
)
@ApiModelProperty
(
value
=
"用户iD"
)
private
Integer
userId
;
private
Integer
userId
;
/**
/**
*
提现类别,第三方提现类别(0-微信,1-支付宝,2-银行卡)
* 提现类别,第三方提现类别(0-微信,1-支付宝,2-银行卡)
*/
*/
@Column
(
name
=
"cath_type"
)
@Column
(
name
=
"cath_type"
)
@ApiModelProperty
(
value
=
"提现类别,第三方提现类别(0-微信,1-支付宝,2-银行卡)"
)
@ApiModelProperty
(
value
=
"提现类别,第三方提现类别(0-微信,1-支付宝,2-银行卡)"
)
private
Integer
cathType
;
private
Integer
cathType
;
/**
* 商户订单号
*/
@Column
(
name
=
"account_number"
)
@Column
(
name
=
"account_number"
)
@ApiModelProperty
(
value
=
"用户账号"
)
@ApiModelProperty
(
value
=
"用户账号"
)
private
String
accountNumber
;
private
String
accountNumber
;
/**
/**
*
第三方订单号:如微信,支付宝,银行卡等
* 第三方订单号:如微信,支付宝,银行卡等
*/
*/
@Column
(
name
=
"cono"
)
@Column
(
name
=
"cono"
)
@ApiModelProperty
(
value
=
"第三方订单号:如微信,支付宝,银行卡等"
)
@ApiModelProperty
(
value
=
"第三方订单号:如微信,支付宝,银行卡等"
)
private
String
cono
;
private
String
cono
;
/**
/**
* 提现金额
* 提现金额
*/
*/
@Column
(
name
=
"balance"
)
@Column
(
name
=
"balance"
)
@ApiModelProperty
(
value
=
"当前钱包余额"
)
@ApiModelProperty
(
value
=
"当前钱包余额"
)
private
BigDecimal
balance
;
private
BigDecimal
balance
;
/**
/**
*
提现金额
* 提现金额
*/
*/
@Column
(
name
=
"amount"
)
@Column
(
name
=
"amount"
)
@ApiModelProperty
(
value
=
"提现金额"
)
@ApiModelProperty
(
value
=
"提现金额"
)
private
BigDecimal
amount
;
private
BigDecimal
amount
;
/**
/**
*
到账金额
*
到账金额
*/
*/
@Column
(
name
=
"real_amount"
)
@Column
(
name
=
"real_amount"
)
@ApiModelProperty
(
value
=
"到账金额"
)
@ApiModelProperty
(
value
=
"到账金额"
)
private
BigDecimal
realAmount
;
private
BigDecimal
realAmount
;
/**
/**
*
手续费
*
手续费
*/
*/
@Column
(
name
=
"commission"
)
@Column
(
name
=
"commission"
)
@ApiModelProperty
(
value
=
"手续费"
)
@ApiModelProperty
(
value
=
"手续费"
)
private
BigDecimal
commission
;
private
BigDecimal
commission
;
/**
/**
*
订单状态:0-未提现,待审核,1-已审核
* 订单状态:0-未提现,待审核,1-已审核
*/
*/
@Column
(
name
=
"stauts"
)
@Column
(
name
=
"stauts"
)
@ApiModelProperty
(
value
=
"订单状态:0-未提现,待审核,1-已审核"
)
@ApiModelProperty
(
value
=
"订单状态:0-未提现,待审核,1-已审核"
)
private
Integer
stauts
;
private
Integer
stauts
;
/**
/**
*
提现日期
* 提现日期
*/
*/
@Column
(
name
=
"crt_time"
)
@Column
(
name
=
"crt_time"
)
@ApiModelProperty
(
value
=
"提现日期"
,
hidden
=
true
)
@ApiModelProperty
(
value
=
"提现日期"
,
hidden
=
true
)
private
Long
crtTime
;
private
Long
crtTime
;
/**
/**
*
审核日期
* 审核日期
*/
*/
@Column
(
name
=
"finish_time"
)
@Column
(
name
=
"finish_time"
)
@ApiModelProperty
(
value
=
"审核日期"
)
@ApiModelProperty
(
value
=
"审核日期"
)
private
Long
finishTime
;
private
Long
finishTime
;
/**
/**
*
操作者ID
* 操作者ID
*/
*/
@Column
(
name
=
"upd_user"
)
@Column
(
name
=
"upd_user"
)
@ApiModelProperty
(
value
=
"操作者ID"
)
@ApiModelProperty
(
value
=
"操作者ID"
)
private
String
updUser
;
private
String
updUser
;
}
}
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/vo/WalletCathDetailVo.java
View file @
a63b7168
...
@@ -29,4 +29,7 @@ public class WalletCathDetailVo {
...
@@ -29,4 +29,7 @@ public class WalletCathDetailVo {
*/
*/
@ApiModelProperty
(
value
=
"审核日期"
)
@ApiModelProperty
(
value
=
"审核日期"
)
private
Long
finishTime
;
private
Long
finishTime
;
@ApiModelProperty
(
value
=
"帐号"
)
private
String
accountNumber
;
}
}
ace-modules/ace-admin/src/main/java/com/github/wxiaoqi/security/admin/biz/MyWalletCathBiz.java
View file @
a63b7168
...
@@ -12,7 +12,6 @@ import com.github.wxiaoqi.security.admin.vo.WalletCathPageVo;
...
@@ -12,7 +12,6 @@ import com.github.wxiaoqi.security.admin.vo.WalletCathPageVo;
import
com.github.wxiaoqi.security.admin.vo.WalletCathVo
;
import
com.github.wxiaoqi.security.admin.vo.WalletCathVo
;
import
com.github.wxiaoqi.security.common.biz.BaseBiz
;
import
com.github.wxiaoqi.security.common.biz.BaseBiz
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.google.common.collect.Maps
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
...
...
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