| | |
| | | package com.dsh.account.feignclient.activity; |
| | | |
| | | |
| | | import com.dsh.account.dto.Location; |
| | | import com.dsh.account.feignclient.activity.model.*; |
| | | import com.dsh.account.model.vo.userBenefitDetail.ExchangeDetailsResponse; |
| | | import com.dsh.account.model.vo.userBenefitDetail.ExchangeDetailsVo; |
| | | import com.dsh.account.model.vo.userBenefitDetail.PointDetailsVo; |
| | | import com.dsh.account.model.vo.userBenefitDetail.ProductDetailsVo; |
| | | import com.dsh.account.feignclient.competition.model.BillingDataRequestVo; |
| | | import com.dsh.account.model.vo.userBenefitDetail.*; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | public interface MerChandiseClient { |
| | | |
| | | @PostMapping("/base/pointMerchars/convertGoods") |
| | | public List<IntegralCommodity> getConvertibleGoods(); |
| | | public List<IntegralCommodity> getConvertibleGoods(@RequestBody Location location); |
| | | |
| | | |
| | | @PostMapping("/base/pointMerchars/getCommoditys") |
| | |
| | | void deletePaymentRecord(@RequestBody String code); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | @PostMapping("/base/pointMerchars/getConsumeDetails") |
| | | List<ConsumeDetail> getConsumeDetails(@RequestBody BillingDataRequestVo requestVo); |
| | | } |