From 021496babb52a859294a8475ffef330009b0167c Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期一, 28 十月 2024 13:47:40 +0800
Subject: [PATCH] 1.小程序-供应商:钱包

---
 src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java b/src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java
index e864d05..b0f3d29 100644
--- a/src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java
+++ b/src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java
@@ -1,8 +1,8 @@
 package com.mzl.flower.entity.wallet;
 
 import java.math.BigDecimal;
+
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.mzl.flower.base.BaseAutoEntity;
 import com.mzl.flower.base.BaseEntity;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
@@ -17,8 +17,7 @@
 @EqualsAndHashCode(callSuper = true)
 @Accessors(chain = true)
 @TableName("t_wallet_bill_record")
-public class WalletBillRecordDO extends BaseAutoEntity {
-
+public class WalletBillRecordDO extends BaseEntity {
 
     @ApiModelProperty(value = "供应商Id")
     private Long supplierId;
@@ -31,6 +30,9 @@
 
     @ApiModelProperty(value = "类型明细")
     private String typeDetail;
+
+    @ApiModelProperty(value = "结算单id")
+    private String settlementId;
 
     @ApiModelProperty(value = "转账Id")
     private String transferId;
@@ -47,5 +49,16 @@
     @ApiModelProperty(value = "余额")
     private BigDecimal balance;
 
+    @ApiModelProperty(value = "转账明细id")
+    private String transferDetailId;
+
+    @ApiModelProperty(value = "转账状态")
+    private String transferState;
+
+    @ApiModelProperty(value = "openId")
+    private String openId;
+
+    @ApiModelProperty(value = "提现记录表ID")
+    private Long withdrawRecordId;
 
 }

--
Gitblit v1.9.3