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;
|
}
|