|
@@ -1,5 +1,6 @@
|
|
package org.springblade.modules.spzf.payInfo.pojo.entity;
|
|
package org.springblade.modules.spzf.payInfo.pojo.entity;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
@@ -7,7 +8,6 @@ import lombok.EqualsAndHashCode;
|
|
import org.springblade.core.mp.base.BaseEntity;
|
|
import org.springblade.core.mp.base.BaseEntity;
|
|
|
|
|
|
import java.io.Serial;
|
|
import java.io.Serial;
|
|
-import java.math.BigDecimal;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
* 付款记录 实体类
|
|
* 付款记录 实体类
|
|
@@ -33,36 +33,38 @@ public class PayInfoEntity extends BaseEntity {
|
|
* 订单金额
|
|
* 订单金额
|
|
*/
|
|
*/
|
|
@Schema(description = "订单金额")
|
|
@Schema(description = "订单金额")
|
|
- private BigDecimal transAmount;
|
|
|
|
|
|
+ private String transAmount;
|
|
/**
|
|
/**
|
|
* 商户订单号
|
|
* 商户订单号
|
|
*/
|
|
*/
|
|
@Schema(description = "商户订单号")
|
|
@Schema(description = "商户订单号")
|
|
private String orgTrace;
|
|
private String orgTrace;
|
|
/**
|
|
/**
|
|
- * 业务日期
|
|
|
|
|
|
+ * 交易时间
|
|
*/
|
|
*/
|
|
- @Schema(description = "业务日期")
|
|
|
|
- private String transDate;
|
|
|
|
|
|
+ @Schema(description = "交易时间")
|
|
|
|
+ private String transTime;
|
|
/**
|
|
/**
|
|
- * 收款方账号名称
|
|
|
|
|
|
+ * 支付方式 1=WeChatMiniApp 2=AliPayMiniApp
|
|
*/
|
|
*/
|
|
- @Schema(description = "收款方账号名称")
|
|
|
|
- private String payeeAcctName;
|
|
|
|
|
|
+ @Schema(description = "支付方式 1=WeChatMiniApp 2=AliPayMiniApp")
|
|
|
|
+ private String payType;
|
|
/**
|
|
/**
|
|
- * 收款方账号
|
|
|
|
|
|
+ * 微信用户标识
|
|
*/
|
|
*/
|
|
- @Schema(description = "收款方账号")
|
|
|
|
- private String payeeAcctNo;
|
|
|
|
|
|
+ @Schema(description = "微信用户标识")
|
|
|
|
+ private String subOpenId;
|
|
/**
|
|
/**
|
|
- * 收款方账号类型
|
|
|
|
|
|
+ * 支付宝用户标识
|
|
*/
|
|
*/
|
|
- @Schema(description = "收款方账号类型")
|
|
|
|
- private String payeeAcctType;
|
|
|
|
- /**
|
|
|
|
- * 数字信封
|
|
|
|
- */
|
|
|
|
- @Schema(description = "数字信封")
|
|
|
|
- private String dgtlEnvlp;
|
|
|
|
-
|
|
|
|
|
|
+ @Schema(description = "支付宝用户标识")
|
|
|
|
+ private String buyerId;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String minMoney;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String maxMoney;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String startTime;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String endTime;
|
|
}
|
|
}
|