package com.mzl.flower.entity.payment; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.mzl.flower.base.BaseEntity; import lombok.Data; import java.math.BigDecimal; import java.time.LocalDateTime; @Data @TableName("t_user_payment") public class UserPayment extends BaseEntity { @TableField("user_id") private String userId; @TableField("order_id") private String orderId;//订单id @TableField("payment_amount") private BigDecimal paymentAmount;//支付金额 @TableField("payment_time") private LocalDateTime paymentTime;//支付时间 @TableField("prepay_response") private String prepayResponse;//预处理响应 @TableField("status") private String status;//支付状态 @TableField("transaction_id") private String transactionId;//事务处理id @TableField("out_trade_no") private String outTradeNo;//对外贸易编号 @TableField("original_xml") private String originalXml;//回调请求内容 @TableField("payment_amount_callback") private String paymentAmountCallback;//实际支付金额 @TableField("payment_time_callback") private LocalDateTime paymentTimeCallback;//支付回调时间 }