| package com.dsh.other.feignclient; | 
|   | 
| import com.dsh.other.entity.TImgConfig; | 
| import com.dsh.other.feignclient.model.UserBenefitImage; | 
| import org.springframework.cloud.openfeign.FeignClient; | 
| import org.springframework.web.bind.annotation.PostMapping; | 
|   | 
| import java.util.List; | 
|   | 
| @FeignClient(value = "mb-cloud-other") | 
| public interface ImgConfigClient { | 
|   | 
|     @PostMapping("/base/imgConfig/getNoneStu") | 
|     List<TImgConfig> getNoneStuImgs(); | 
|   | 
|   | 
|     @PostMapping("/base/imgConfig/getBenefitImage") | 
|     public UserBenefitImage getImageConfig(); | 
|   | 
| } |