xiaoyong931011
2021-07-21 f79dd632f83167b3cd5ad01e2f7c494b92c834d3
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
package com.xzx.gc.entity;
 
import lombok.Data;
 
import javax.persistence.Id;
import javax.persistence.Table;
 
@Table(name = "xzx_pay_wx_record")
@Data
public class PayWxRecord {
    @Id
    private Long id;
 
    private String openid;
 
    private String tradeType;
 
    private Integer totalFee;
 
    private String transactionId;
 
    private String outTradeNo;
 
    private String resultCode;
 
    private String appid;
 
    private String mchId;
 
    private String errCode;
 
    private String errCodeDes;
 
    private String isSubscribe;
 
    private String createTime;
}