From fd7b8fb7c89832c28a838b0449bbb8a392433ee2 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期二, 22 四月 2025 14:33:02 +0800 Subject: [PATCH] 将华为云短信替换成阿里云短信 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.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/ShopPointCopy.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java index 7901046..d7731d0 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/ShopPointCopy.java @@ -61,20 +61,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") @@ -87,6 +77,10 @@ @ApiModelProperty(value = "订单号") @TableField("order_num") private String orderNum; + + @ApiModelProperty(value = "变动方向(-1:减少,1:增加)") + @TableField("change_direction") + private Integer changeDirection; -- Gitblit v1.7.1