xiaoyong931011
2021-06-22 38609ee05255ce5c36f308fe8d595555a86f9ba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.xzx.gc.entity;
 
import lombok.Data;
 
@Data
//@Table(name = "xzx_pay_request_log")
public class PayLog {
 
    Long id;
    /**
     * 用户ID
     */
    String userId;
    /**
     * 体现钱金额
     */
    Double accountBeforeMoney;
    /**
     * 体现钱可体现金额
     */
    Double withdrawBeforeMoney;
    /**
     * 体现后金额
     */
    Double accountAfterMoney;
    /**
     * 体现后可体现金额
     */
    Double withdrawAfterMoney;
    /**
     * 体现金额
     */
    Double money;
    /**
     * 创建时间
     */
    String createTime;
    /**
     * 支付状态
     */
    String payStatus;
 
    /**
     * 支付订单号
     */
    String mchBillno;
    /**
     * 微信opneid
     */
    String wxOpenid;
    /**
     * 支付请求参数
     */
    String requestParams;
    /**
     * 账号ID
     */
    String accountId;
 
    /**
     * 返回数据
     */
    String responseData;
    /**
     * 备注字段
     */
    String remark;
 
}