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
ffcca0c8
Commit
ffcca0c8
authored
Jul 25, 2019
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
d6560e72
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
8 deletions
+64
-8
AppUserAlipay.java
...m/github/wxiaoqi/security/admin/entity/AppUserAlipay.java
+43
-0
MyWallet.java
...va/com/github/wxiaoqi/security/admin/entity/MyWallet.java
+16
-8
WithDrawRuleVo.java
.../java/com/xxfc/platform/app/entity/vo/WithDrawRuleVo.java
+5
-0
No files found.
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/entity/AppUserAlipay.java
0 → 100644
View file @
ffcca0c8
package
com
.
github
.
wxiaoqi
.
security
.
admin
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
javax.persistence.Column
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
java.util.Date
;
/**
* 支付宝账号表
*/
@Table
(
name
=
"app_user_alipay"
)
public
class
AppUserAlipay
{
@Id
@GeneratedValue
(
generator
=
"JDBC"
)
//此处加上注解
private
Integer
id
;
@ApiModelProperty
(
"用户id"
)
@Column
(
name
=
"user_id"
)
private
Integer
userId
;
@ApiModelProperty
(
"支付宝账号"
)
@Column
(
name
=
"tx_alipay"
)
private
String
txAlipay
;
@ApiModelProperty
(
"0-否;1-是"
)
@Column
(
name
=
"is_default"
)
private
Integer
isDefault
;
@ApiModelProperty
(
"创建时间"
)
@Column
(
name
=
"crt_time"
)
private
Long
crtTime
;
@ApiModelProperty
(
"是否删除;0-正常;1-删除"
)
@Column
(
name
=
"is_del"
)
private
Integer
isDel
;
}
\ No newline at end of file
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/entity/MyWallet.java
View file @
ffcca0c8
...
@@ -19,8 +19,8 @@ import lombok.Data;
...
@@ -19,8 +19,8 @@ import lombok.Data;
@Table
(
name
=
"my_wallet"
)
@Table
(
name
=
"my_wallet"
)
public
class
MyWallet
implements
Serializable
{
public
class
MyWallet
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
/**
/**
* id
* id
*/
*/
@Column
(
name
=
"id"
)
@Column
(
name
=
"id"
)
...
@@ -34,15 +34,23 @@ public class MyWallet implements Serializable {
...
@@ -34,15 +34,23 @@ public class MyWallet implements Serializable {
@GeneratedValue
(
generator
=
"JDBC"
)
@GeneratedValue
(
generator
=
"JDBC"
)
@ApiModelProperty
(
"用户ID"
)
@ApiModelProperty
(
"用户ID"
)
private
Integer
userId
;
private
Integer
userId
;
/**
* 余额(分)
*/
@Column
(
name
=
"balance"
)
@ApiModelProperty
(
value
=
"余额(元)"
)
private
BigDecimal
balance
;
/**
/**
*
余额(分)
*
支付密码
*/
*/
@Column
(
name
=
"
balance
"
)
@Column
(
name
=
"
pay_password
"
)
@ApiModelProperty
(
value
=
"
余额(元)
"
)
@ApiModelProperty
(
value
=
"
支付密码
"
)
private
BigDecimal
balance
;
private
String
payPassword
;
/**
/**
* 已提现金额
* 已提现金额
*/
*/
@Column
(
name
=
"withdrawals"
)
@Column
(
name
=
"withdrawals"
)
...
...
xx-app/xx-app-api/src/main/java/com/xxfc/platform/app/entity/vo/WithDrawRuleVo.java
View file @
ffcca0c8
...
@@ -38,6 +38,11 @@ public class WithDrawRuleVo {
...
@@ -38,6 +38,11 @@ public class WithDrawRuleVo {
*/
*/
private
Integer
maxNumberOfWithdraw
;
private
Integer
maxNumberOfWithdraw
;
/**
* 最多提现次数(日)
*/
private
Integer
maxNumberOfDay
;
/**
/**
* 1. 线上 2.线下
* 1. 线上 2.线下
*/
*/
...
...
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