From 1205db4e3dc20905a7e52aa05c2670f98cb51a38 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期二, 14 一月 2025 15:19:38 +0800
Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/qijisheng

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java |   36 +++++++++++++++++++++++++++++++++++-
 1 files changed, 35 insertions(+), 1 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
index ba28085..b09a71e 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
@@ -144,6 +144,9 @@
     @ApiModelProperty(value = "已提现金额")
     @TableField("withdraw_money")
     private BigDecimal withdrawMoney;
+    @ApiModelProperty(value = "审核中金额")
+    @TableField(exist = false)
+    private BigDecimal withdrawAuditMoney;
     
     @ApiModelProperty(value = "余额")
     @TableField("balance")
@@ -163,7 +166,6 @@
 
     @ApiModelProperty(value = "删除(0=否,1=是)")
     @TableField("del_flag")
-    @TableLogic
     private Integer delFlag;
 
     @ApiModelProperty(value = "添加时间")
@@ -191,5 +193,37 @@
     private String receiverBankChannelNo;
 
 
+    @ApiModelProperty(value = "省")
+    @TableField("province")
+    private String province;
 
+    @ApiModelProperty(value = "省编号")
+    @TableField("province_code")
+    private String provinceCode;
+
+    @ApiModelProperty(value = "市")
+    @TableField("city")
+    private String city;
+
+    @ApiModelProperty(value = "市编号")
+    @TableField("city_code")
+    private String cityCode;
+
+    @ApiModelProperty(value = "区")
+    @TableField("district")
+    private String district;
+
+    @ApiModelProperty(value = "区编号")
+    @TableField("district_code")
+    private String districtCode;
+
+    @TableField(exist = false)
+    private Double distance;
+
+    @TableField(exist = false)
+    private Double score;
+
+    @ApiModelProperty(value = "自己打分")
+    @TableField(exist = false)
+    private String myScore;
 }

--
Gitblit v1.7.1