|
@@ -0,0 +1,49 @@
|
|
|
|
|
+package com.payment.platform.module.payment.facetoface.dto;
|
|
|
|
|
+
|
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+import java.time.OffsetDateTime;
|
|
|
|
|
+
|
|
|
|
|
+@Data
|
|
|
|
|
+public class F2fTradeRecordVO {
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "ID")
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "企业ID")
|
|
|
|
|
+ private String enterpriseId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "商户订单号")
|
|
|
|
|
+ private String outTradeNo;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "支付宝交易号")
|
|
|
|
|
+ private String tradeNo;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "收款金额(元)")
|
|
|
|
|
+ private String totalAmount;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "收款标题")
|
|
|
|
|
+ private String subject;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "交易状态")
|
|
|
|
|
+ private String tradeStatus;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "买家支付宝用户号")
|
|
|
|
|
+ private String buyerId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "买家支付宝账号")
|
|
|
|
|
+ private String buyerLogonId;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "收款码URL")
|
|
|
|
|
+ private String qrCode;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "交易创建时间")
|
|
|
|
|
+ private OffsetDateTime gmtCreate;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "付款时间")
|
|
|
|
|
+ private OffsetDateTime gmtPayment;
|
|
|
|
|
+
|
|
|
|
|
+ @Schema(description = "创建时间")
|
|
|
|
|
+ private OffsetDateTime createdTime;
|
|
|
|
|
+}
|