From b8abd1c4081c2c67c1f258b9956f4c60652d831d Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期三, 27 八月 2025 17:13:14 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 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 df2c92b..148ae9d 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 @@ -33,7 +33,12 @@ private Long id; @TableField(exist = false) private String idStr; - + @ApiModelProperty(value = "提现单号") + @TableField("code") + private String code; + @ApiModelProperty(value = "提现流水号") + @TableField("order_number") + private String orderNumber; @ApiModelProperty(value = "门店id") @TableField("shop_id") private Integer shopId; @@ -86,6 +91,9 @@ @TableField(exist = false) private String shopName; + @ApiModelProperty(value = "联系电话") + @TableField(exist = false) + private String phone; @ApiModelProperty("报备商户号") @TableField("tradeMerchantNo") @@ -103,7 +111,7 @@ @TableField("receiverAccountType") private Integer receiverAccountType; - @ApiModelProperty("收款账户联行号") + @ApiModelProperty("收款方开户行编号") @TableField("receiverBankChannelNo") private String receiverBankChannelNo; -- Gitblit v1.7.1