From 6539b325b5ce95d1fafa864c75a32279c954167f Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Fri, 07 Feb 2025 11:03:31 +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