Commit 48821548 authored by tangfang's avatar tangfang

修改公司查询审核信息问题

parent 68b09b83
......@@ -3,6 +3,8 @@ package com.pangding.web.authority.feign;
import com.pangding.web.authority.vo.reqvo.CompanyScenicInfoReqVo;
import com.pangding.web.authority.vo.reqvo.MerchantCreateReqVo;
import com.pangding.web.vo.product.pd.merchant.MerchantVo;
import com.pangding.web.vo.v2.scenic.merchant.pd.MerchantDeviceVo;
import com.pangding.web.vo.v2.scenic.merchant.req.MerchantDeviceReqVo;
import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
......@@ -13,14 +15,13 @@ import org.springframework.web.bind.annotation.RequestMapping;
* @create 2019/5/22 11:55
*/
@FeignClient(value = "pd-scenic")
@RequestMapping(value = "/scenic")
public interface StoreFeign {
/**
* 新建景区
* @param req
* @return
*/
@RequestMapping("/merchantCreate")
@RequestMapping("/scenic/merchantCreate")
ResponseResult<MerchantVo> merchantCreate(@RequestBody MerchantCreateReqVo req);
/**
......@@ -29,6 +30,8 @@ public interface StoreFeign {
* @param req
* @return
*/
@RequestMapping("/getCompanyScenicInfo")
@RequestMapping("/scenic/getCompanyScenicInfo")
ResponseResult<MerchantVo> getCompanyScenicInfo(@RequestBody CompanyScenicInfoReqVo req);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment