From 97d99b76bdde8952cf257c3c85c1a8a080927af4 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 31 三月 2025 16:44:22 +0800 Subject: [PATCH] 修改反馈文档bug --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java | 14 ++++---------- 1 files changed, 4 insertions(+), 10 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java index 34e632c..566124b 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPoint.java @@ -62,20 +62,10 @@ @Excel(name = "变动时间") private LocalDateTime createTime; - @ApiModelProperty(value = "历史余额") - @TableField("historical_point") - private Integer historicalPoint; - @ApiModelProperty(value = "变动金额") @TableField("variable_point") @Excel(name = "变动金额") private Integer variablePoint; - - @ApiModelProperty(value = "变动后余额") - @TableField("balance") - private Integer balance; - - @ApiModelProperty(value = "变动用户id") @TableField("create_user_id") @@ -88,6 +78,10 @@ @ApiModelProperty(value = "订单号") @TableField("order_num") private String orderNum; + + @ApiModelProperty(value = "变动方向(-1:减少,1:增加)") + @TableField("change_direction") + private Integer changeDirection; -- Gitblit v1.7.1