From 4c413a6290c13bd98cade163a774ed1df26c2d47 Mon Sep 17 00:00:00 2001
From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com>
Date: 星期一, 04 十一月 2024 09:53:03 +0800
Subject: [PATCH] 订单管理:全部订单数量-待付款-已取消-已退款

---
 src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java |   37 ++++++++++++++++++++++++++++++++++---
 1 files changed, 34 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..684439d 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;
@@ -29,8 +28,14 @@
     @ApiModelProperty(value = "账单变动类型(提现,结算)")
     private String type;
 
+    @ApiModelProperty(value = "账单变动提现类型")
+    private String withdrawType;
+
     @ApiModelProperty(value = "类型明细")
     private String typeDetail;
+
+    @ApiModelProperty(value = "结算单id")
+    private String settlementId;
 
     @ApiModelProperty(value = "转账Id")
     private String transferId;
@@ -47,5 +52,31 @@
     @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;
+
+    @ApiModelProperty(value = "orderNo")
+    private String orderNo;
+
+    @ApiModelProperty(value = "orderItemId")
+    private String orderItemId;
+
+    @ApiModelProperty(value = "结算金额")
+    private BigDecimal totalAmount;
+
+    @ApiModelProperty(value = "备注")
+    private String remark;
+
+    @ApiModelProperty(value = "实际转账金额")
+    private BigDecimal actualTransferAmount;
 
 }

--
Gitblit v1.9.3