From 2dda6304029c95e171b2f9e32406eb4600d77ebd Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期三, 01 十一月 2023 18:57:58 +0800 Subject: [PATCH] 支付会员送券功能补充 运营商权限bug修改 --- cloud-server-other/src/main/java/com/dsh/other/service/ISiteService.java | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/service/ISiteService.java b/cloud-server-other/src/main/java/com/dsh/other/service/ISiteService.java index 35db539..86c17e6 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/service/ISiteService.java +++ b/cloud-server-other/src/main/java/com/dsh/other/service/ISiteService.java @@ -2,6 +2,7 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.dsh.other.entity.Site; +import com.dsh.other.feignclient.model.SiteChangeStateVO; import com.dsh.other.model.*; import com.dsh.other.util.ResultUtil; @@ -40,7 +41,7 @@ * @return * @throws Exception */ - List<QuerySiteTimes> querySiteTimes(Integer id, String day) throws Exception; + List<QuerySiteTimes> querySiteTimes(Integer id, String day,String halfName,String siteName) throws Exception; /** @@ -89,4 +90,7 @@ * @throws Exception */ ResultUtil<Map<String, Double>> queryContinuePaymentMySitePrice(Integer id) throws Exception; + + Object changeState(SiteChangeStateVO vo); + } -- Gitblit v1.7.1