From c27c1f2beb4ca89a94eaa854fce6b4553db8f2f8 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期三, 15 一月 2025 19:58:12 +0800 Subject: [PATCH] 修改 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopWithdraw.java | 9 +++++++-- 1 files changed, 7 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 3807f84..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,9 +59,13 @@ @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") @@ -67,7 +73,6 @@ @ApiModelProperty(value = "删除(0=否,1=是)") @TableField("del_flag") - @TableLogic private Integer delFlag; @ApiModelProperty(value = "添加时间") -- Gitblit v1.7.1