From b0cc9bd3619e69fa4c8bbdedebb56435cfd74a8f Mon Sep 17 00:00:00 2001
From: luodangjia <luodangjia>
Date: 星期五, 17 一月 2025 11:24:51 +0800
Subject: [PATCH] 12.18

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java
index ddd41d8..6bda5f6 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java
@@ -32,6 +32,8 @@
     @ApiModelProperty(value = "主键")
     @TableId("id")
     private Long id;
+    @TableField(exist = false)
+    private String idStr;
 
     @ApiModelProperty(value = "门店id")
     @TableField("shop_id")
@@ -57,10 +59,14 @@
     @TableField("audit_msg")
     private String auditMsg;
 
-    @ApiModelProperty(value = "状态(1=申请中,2=已到账)")
+    @ApiModelProperty(value = "状态(1=申请中,2=已到账,3=失败)")
     @TableField("status")
     private Integer status;
 
+    @ApiModelProperty(value = "处理结果")
+    @TableField("remark")
+    private String remark;
+
     @ApiModelProperty(value = "到账时间")
     @TableField("arrival_time")
     private LocalDateTime arrivalTime;

--
Gitblit v1.7.1