记得上下班打卡 | git大法好,push需谨慎

Commit 2e410900 authored by jiangxiulong's avatar jiangxiulong

addr/query/depth

parent b34ef7ea
......@@ -2,12 +2,16 @@ package com.liquidnet.service.feign.adam.api;
import com.liquidnet.service.adam.dto.rsc.AdamChimeUinfoReq;
import com.liquidnet.service.adam.dto.rsc.AdamChimeUinfoDto;
import com.liquidnet.service.adam.dto.vo.AdamAddressesVo;
import com.liquidnet.service.adam.dto.vo.AdamEntersVo;
import com.liquidnet.service.base.ResponseDto;
import feign.hystrix.FallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
......@@ -18,22 +22,13 @@ import java.util.List;
fallback = FallbackFactory.Default.class)
public interface FeignAdamBaseClient {
// @GetMapping("adam/enters/query/depth")
// ResponseDto<AdamEntersVo> queryEnters(@RequestParam("entersId") String entersId,
// @RequestParam("uid") String uid);
//
// @GetMapping("adam/addr/query/depth")
// ResponseDto<AdamAddressesVo> queryAddresses(@RequestParam(value = "addrId") String addrId,
// @RequestParam(value = "uid") String uid);
//
// /**
// * 判断是否会员
// *
// * @param uid 用户ID
// * @return 是否会员:true-是
// */
// @GetMapping("adam/member/check/depth")
// ResponseDto<Boolean> isMember(@RequestParam("uid") String uid);
@GetMapping("enters/query/depth")
ResponseDto<AdamEntersVo> queryEnters(@RequestParam("entersId") String entersId,
@RequestParam("uid") String uid);
@GetMapping("addr/query/depth")
ResponseDto<AdamAddressesVo> queryAddresses(@RequestParam(value = "addrId") String addrId,
@RequestParam(value = "uid") String uid);
@PostMapping("rsc/inquire/cuinfo")
ResponseDto<List<AdamChimeUinfoDto>> queryForChimeUserInfo(@RequestBody AdamChimeUinfoReq 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