This commit is contained in:
2023-05-27 11:44:44 +08:00
parent 458687951e
commit 59efb253e4
3 changed files with 27 additions and 25 deletions

View File

@@ -22,7 +22,9 @@ public class AdapayCallbackRecord implements Serializable {
/**
* 主键id
*/
private String id;
private Integer id;
private String paymentId;
/**
* 汇付商户appId
@@ -82,23 +84,4 @@ public class AdapayCallbackRecord implements Serializable {
private static final long serialVersionUID = 1L;
public AdapayCallbackRecord(String id, String appId, String description, String createdTime, String endTime, BigDecimal feeAmt, String orderNo, String outTransId, String partyOrderId, BigDecimal payAmt, String payChannel, BigDecimal realAmt, String shareEq, String status, String wxUserId, Date createTime, String delFlag) {
this.id = id;
this.appId = appId;
this.description = description;
this.createdTime = createdTime;
this.endTime = endTime;
this.feeAmt = feeAmt;
this.orderNo = orderNo;
this.outTransId = outTransId;
this.partyOrderId = partyOrderId;
this.payAmt = payAmt;
this.payChannel = payChannel;
this.realAmt = realAmt;
this.shareEq = shareEq;
this.status = status;
this.wxUserId = wxUserId;
this.createTime = createTime;
this.delFlag = delFlag;
}
}