lisy
2023-06-14 6a4b079181d22a54a11dfdafd5400b171a1f3fc4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.dsh.app.feignclient.other;
 
import com.dsh.app.feignclient.other.model.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();
}