forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
861 B
28 lines
861 B
6 years ago
|
package com.epmet.feign;
|
||
|
|
||
|
import com.epmet.commons.tools.constant.ServiceConstant;
|
||
|
import com.epmet.commons.tools.utils.Result;
|
||
|
import com.epmet.dto.CustomerGridDTO;
|
||
|
import com.epmet.dto.form.GovOrgFormDTO;
|
||
|
import com.epmet.feign.fallback.GovOrgFeignClientFallBack;
|
||
|
import org.springframework.cloud.openfeign.FeignClient;
|
||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||
|
|
||
|
/**
|
||
|
* @Description 居民端陌生人导览 调用gov-org服务
|
||
|
* @Author sun
|
||
|
* @Date 2020/3/16
|
||
|
*/
|
||
|
@FeignClient(name = ServiceConstant.GOV_ORG_SERVER, fallback = GovOrgFeignClientFallBack.class)
|
||
|
public interface GovOrgFeignClient {
|
||
|
|
||
|
/**
|
||
|
* @param
|
||
|
* @Description 根据客户Id查询客户用户表数据
|
||
|
* @Date 2020/3/17
|
||
|
**/
|
||
|
@PostMapping("/gov/org/customergrid/getcustomergridbygridid")
|
||
|
Result<CustomerGridDTO> getCustomerGridByGridId(GovOrgFormDTO formDTO);
|
||
|
|
||
|
}
|