From 631a5aa09e0147ca81fffcb1434e57b1cd1ba6f6 Mon Sep 17 00:00:00 2001 From: lisy <linlangsur163@163.com> Date: 星期三, 09 八月 2023 09:34:53 +0800 Subject: [PATCH] app端口:积分变动记录增加变动类型字段,代码同步更新;积分兑换操作的数量校验功能完善 --- cloud-server-other/src/main/java/com/dsh/other/feignclient/SiteClient.java | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/feignclient/SiteClient.java b/cloud-server-other/src/main/java/com/dsh/other/feignclient/SiteClient.java index 8f03d45..95020b1 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/feignclient/SiteClient.java +++ b/cloud-server-other/src/main/java/com/dsh/other/feignclient/SiteClient.java @@ -1,6 +1,9 @@ package com.dsh.other.feignclient; import com.dsh.other.entity.SiteBooking; +import com.dsh.other.feignclient.model.BillingDataRequestVo; +import com.dsh.other.feignclient.model.SiteVo; +import com.dsh.other.model.BillingRequestOfType; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -12,9 +15,13 @@ public interface SiteClient { @PostMapping("/base/site/queryPaymentSiteDetail") - List<SiteBooking> getAllSiteBookingList(@RequestBody Integer appUserId); + List<BillingRequestOfType> getAllSiteBookingList(@RequestBody BillingDataRequestVo requestVo); @PostMapping("/base/site/queryPlaypaiGoldSiteDetail") List<SiteBooking> wanpaiGoldSiteBookingList(@RequestBody Integer appUserId); + + @PostMapping("/base/site/getNewAddSiteList") + List<SiteVo> getAppUserSiteList(); + } -- Gitblit v1.7.1