From ffde84f1c23e432d4020ee4ad4a0461f63bc0bc7 Mon Sep 17 00:00:00 2001 From: lisy <linlangsur163@163.com> Date: 星期日, 20 八月 2023 23:30:34 +0800 Subject: [PATCH] 管理后台:补充积分商品详情的省市和门店 --- cloud-server-other/src/main/java/com/dsh/other/service/ISiteBookingService.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/service/ISiteBookingService.java b/cloud-server-other/src/main/java/com/dsh/other/service/ISiteBookingService.java index 06e5ccf..04e54e6 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/service/ISiteBookingService.java +++ b/cloud-server-other/src/main/java/com/dsh/other/service/ISiteBookingService.java @@ -2,10 +2,15 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.dsh.other.entity.SiteBooking; +import com.dsh.other.model.BillingRequestOfType; + +import java.util.List; /** * @author zhibing.pu * @date 2023/7/13 16:49 */ public interface ISiteBookingService extends IService<SiteBooking> { + List<BillingRequestOfType> queryDatas(Integer appUserId, String monthStart, String monthEnd); + } -- Gitblit v1.7.1