From f62b8d5fc74db2391c7769e024e65c2bb51ac6bc Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期五, 11 四月 2025 11:51:12 +0800
Subject: [PATCH] 修改反馈bug
---
ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopBalanceStatement.java | 51 +++++++++++++++++++++++++--------------------------
1 files changed, 25 insertions(+), 26 deletions(-)
diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopBalanceStatement.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopBalanceStatement.java
index d2f0547..c4e4473 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopBalanceStatement.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopBalanceStatement.java
@@ -38,32 +38,36 @@
@ApiModelProperty(value = "门店id")
@TableField("shop_id")
private Integer shopId;
-
- @ApiModelProperty(value = "变动类型(1=绑定门店分佣,2=下级门店分佣,3=核销门店服务费,4=提现)")
+ @ApiModelProperty(value = "门店名称")
+ @TableField(exist = false)
+ @Excel(name = "门店名称")
+ private String shopName;
+ @ApiModelProperty(value = "店长名称")
+ @TableField(exist = false)
+ @Excel(name = "店长姓名")
+ private String shopManagerName;
+ @ApiModelProperty(value = "联系电话")
+ @TableField(exist = false)
+ @Excel(name = "联系电话")
+ private String phone;
+ @ApiModelProperty(value = "变动类型(1=服务商分佣,2=高级服务商分佣,3=核销门店服务费,4=提现)")
@TableField("type")
- @Excel(name = "变更类型",readConverterExp = "1=绑定门店分佣,2=下级门店分佣,3=核销门店服务费,4=提现")
+ @Excel(name = "变更类型",readConverterExp = "1=服务商分佣,2=高级服务商分佣,3=核销门店服务费")
private Integer type;
-
- @ApiModelProperty(value = "历史余额")
- @TableField("historical_balance")
- private BigDecimal historicalBalance;
@ApiModelProperty(value = "变动金额")
@TableField("variable_amount")
private BigDecimal variableAmount;
+ @ApiModelProperty(value = "变动时间")
+ @TableField("create_time")
+ @Excel(name = "变更时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
+ private LocalDateTime createTime;
@ApiModelProperty(value = "变动金额")
@TableField(exist = false)
@Excel(name = "变更数量")
private String variableAmountString;
- @ApiModelProperty(value = "变动后余额")
- @TableField("balance")
- private BigDecimal balance;
- @ApiModelProperty(value = "变动时间")
- @TableField("create_time")
- @Excel(name = "变更时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime createTime;
@ApiModelProperty(value = "变动用户id")
@TableField("create_user_id")
@@ -72,21 +76,16 @@
@ApiModelProperty(value = "关联对象id")
@TableField("object_id")
private Long objectId;
+
+ @ApiModelProperty(value = "变动方向(-1:减少,1:增加)")
+ @TableField("change_direction")
+ private Integer changeDirection;
- @ApiModelProperty(value = "门店名称")
- @TableField(exist = false)
- @Excel(name = "门店名称")
- private String shopName;
- @ApiModelProperty(value = "店长名称")
- @TableField(exist = false)
- @Excel(name = "店长名称")
- private String shopManagerName;
- @ApiModelProperty(value = "联系电话")
- @TableField(exist = false)
- @Excel(name = "联系电话")
- private String phone;
+
+
+
@ApiModelProperty(value = "开始时间")
@TableField(exist = false)
--
Gitblit v1.7.1