update 汇付支付回调

This commit is contained in:
2023-05-27 11:20:43 +08:00
parent 21606e8200
commit 23375c4149
3 changed files with 48 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
package com.jsowell.pile.domain;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
import java.math.BigDecimal;
@@ -11,6 +15,9 @@ import java.util.Date;
* @author
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class AdapayCallbackRecord implements Serializable {
/**
* 主键id
@@ -37,7 +44,8 @@ public class AdapayCallbackRecord implements Serializable {
*/
private String endTime;
private Object expend;
@JsonIgnore
private String expend;
private BigDecimal feeAmt;
@@ -73,4 +81,24 @@ public class AdapayCallbackRecord implements Serializable {
private String delFlag;
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;
}
}