New file |
| | |
| | | package com.dsh.account.feignclient.other; |
| | | |
| | | import com.dsh.account.entity.OperatorUser; |
| | | import com.dsh.account.entity.User; |
| | | import com.dsh.account.entity.Vip; |
| | | import com.dsh.account.feignclient.competition.model.BillingDataRequestVo; |
| | | import com.dsh.account.feignclient.other.model.SiteBooking; |
| | | import com.dsh.account.model.RequestOfTypeVo; |
| | | import com.dsh.account.model.vo.exploreDetail.SiteVo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | |
| | | @FeignClient("mb-cloud-other") |
| | | public interface VipClient { |
| | | |
| | | |
| | | @PostMapping("/vip/listAll") |
| | | List<Vip> listAll(); |
| | | @PostMapping("/vip/getVipByIds") |
| | | List<Vip> getVipByIds(@RequestBody String ids); |
| | | @PostMapping("/vip/getAgreement") |
| | | String getAgreement(); |
| | | |
| | | } |