From 26b94307e6a48b35dbd030946b5ed7c0d3208a7a Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Fri, 20 Dec 2024 12:32:48 +0800 Subject: [PATCH] refactor(mall): 调整会员等级更新和积分清空任务的执行频率 --- src/main/java/cc/mrbird/febs/mall/dto/MoneyFlowListDto.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/dto/MoneyFlowListDto.java b/src/main/java/cc/mrbird/febs/mall/dto/MoneyFlowListDto.java index 7e5bd6e..0e7e533 100644 --- a/src/main/java/cc/mrbird/febs/mall/dto/MoneyFlowListDto.java +++ b/src/main/java/cc/mrbird/febs/mall/dto/MoneyFlowListDto.java @@ -1,5 +1,6 @@ package cc.mrbird.febs.mall.dto; +import com.baomidou.mybatisplus.annotation.TableField; import io.swagger.annotations.ApiModel; import lombok.Data; @@ -11,4 +12,12 @@ private String phone; + private Integer type; + + private Integer flowType; + + private String startTime; + + private String endTime; + } -- Gitblit v1.9.1