puzhibing
2023-07-04 60ef8b4a95540dfab9df0447364ee40c18354010
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dsh.other.feignclient;
 
import com.dsh.other.entity.TImgConfig;
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("/imgConfig/getNoneStu")
    List<TImgConfig> getNoneStuImgs();
}