package com.dsh.account.feignclient.activity; import com.dsh.account.entity.IntroduceRewards; import com.dsh.account.feignclient.activity.model.IntrduceOfUserRequest; import com.dsh.account.feignclient.competition.model.PurchaseRecordVo; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import java.util.List; @FeignClient(value = "mb-cloud-activity") public interface IntroduceRewardsClient { @PostMapping("/base/introduce/useOfRewards") public List queryAppUsersofIntroduce(@RequestBody IntrduceOfUserRequest request); @PostMapping("/base/introduce/getGiftList") List getGiftList(@RequestBody String cityCode); }