|
|
@@ -13,6 +13,7 @@ import com.crm.rely.backend.exception.ServiceException;
|
|
|
import org.springframework.cloud.netflix.feign.FeignClient;
|
|
|
import org.springframework.http.MediaType;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestPart;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
@@ -33,6 +34,9 @@ public interface WasabiCardFeignService {
|
|
|
@PostMapping("/card/types")
|
|
|
BaseResultDto getCardTypes() throws ServiceException;
|
|
|
|
|
|
+ @PostMapping("/externalSystemCustomerData")
|
|
|
+ BaseResultDto externalSystemCustomerData(CustomerDataEntity entity) throws ServiceException;
|
|
|
+
|
|
|
/**
|
|
|
* 商户用户分页列表
|
|
|
*/
|