package com.xzx.gc.entity; import lombok.Data; @Data //@Table(name = "xzx_pay_request_log") public class PayLog { Long id; /** * 用户ID */ String userId; /** * 体现钱金额 */ Double accountBeforeMoney; /** * 体现钱可体现金额 */ Double withdrawBeforeMoney; /** * 体现后金额 */ Double accountAfterMoney; /** * 体现后可体现金额 */ Double withdrawAfterMoney; /** * 体现金额 */ Double money; /** * 创建时间 */ String createTime; /** * 支付状态 */ String payStatus; /** * 支付订单号 */ String mchBillno; /** * 微信opneid */ String wxOpenid; /** * 支付请求参数 */ String requestParams; /** * 账号ID */ String accountId; /** * 返回数据 */ String responseData; /** * 备注字段 */ String remark; }