MCPcopy Create free account
hub / github.com/Exrick/xpay / Pay

Class Pay

xpay-code/src/main/java/cn/exrick/bean/Pay.java:11–334  ·  view source on GitHub ↗

@author Exrickx

Source from the content-addressed store, hash-verified

9 * @author Exrickx
10 */
11@Entity
12@Table(name = "t_pay")
13public class Pay implements Serializable{
14
15 /**
16 * 唯一标识
17 */
18 @Id
19 @Column
20 private String id;
21
22 @Column
23 private String nickName;
24
25 @Column
26 private BigDecimal money;
27
28 /**
29 * 留言
30 */
31 @Column
32 private String info;
33
34 @Column
35 private Date createTime;
36
37 @Column
38 private Date updateTime;
39
40 /**
41 * 用户通知邮箱
42 */
43 @Column
44 private String email;
45
46 @Column
47 private String testEmail;
48
49 /**
50 * 显示状态 0待审核 1确认显示 2驳回 3通过不展示 4已扫码
51 */
52 @Column
53 private Integer state=0;
54
55 @Column
56 private String payType;
57
58 /**
59 * 支付标识
60 */
61 @Column
62 private String payNum;
63
64 /**
65 * 是否自定义输入
66 */
67 @Column
68 private Boolean custom;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected