--微信支付

This commit is contained in:
yc13649764453
2023-05-24 18:13:36 +08:00
parent 4e7aec5b60
commit 068192327c
25 changed files with 3241 additions and 657 deletions

View File

@@ -0,0 +1,75 @@
package com.peanut.modules.book.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
/**
* 微信订单表
*
* @author yl
* @email yl328572838@163.com
* @date 2022-08-29 15:27:44
*/
@Data
@TableName("pay_wechat_order")
public class PayWechatOrderEntity implements Serializable {
private static final long serialVersionUID = 1L;
/**
*
*/
@TableId
private Long id;
/**
* 预支付交易会话标识
*/
private String prepayId;
/**
* 用户Id
*/
private Integer customerId;
/**
* 订单编号
*/
private String orderSn;
/**
* 支付金额
*/
private BigDecimal totalAmount;
/**
* 创建订单时间
*/
private Date createTime;
/**
* 系统日志
*/
private String systemLog;
/**
* 交易类型
*/
private String payType;
/**
* 订单Id
*/
private String orderId;
/**
* 购买配置id
*/
private Integer buyOrderId;
}