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

Commit a7ea28f4 authored by jiangxiulong's avatar jiangxiulong

Merge remote-tracking branch 'origin/dev' into dev

parents 78f27d68 de866caf
......@@ -4,7 +4,7 @@ liquidnet:
switch: false
info:
port: 9001
context:
context: /adam
name: liquidnet-service-adam
logfile:
path: ./logs
......
......@@ -4,7 +4,7 @@ liquidnet:
switch: false
info:
port: 9002
context:
context: /kylin
name: liquidnet-service-kylin
logfile:
path: ./logs
......
......@@ -15,11 +15,11 @@ import org.springframework.web.bind.annotation.RequestParam;
fallback = FallbackFactory.Default.class)
public interface FeignAdamBaseClient {
@GetMapping("enters/query/depth")
@GetMapping("adam/enters/query/depth")
ResponseDto<AdamEntersVo> queryEnters(@RequestParam("entersId") String entersId,
@RequestParam("uid") String uid);
@GetMapping("addr/query/depth")
@GetMapping("adam/addr/query/depth")
ResponseDto<AdamAddressesVo> queryAddresses(@RequestParam(value = "addrId") String addrId,
@RequestParam(value = "uid") String uid);
......@@ -29,6 +29,6 @@ public interface FeignAdamBaseClient {
* @param uid 用户ID
* @return 是否会员:true-是
*/
@GetMapping("member/check/depth")
@GetMapping("adam/member/check/depth")
ResponseDto<Boolean> isMember(@RequestParam("uid") String uid);
}
......@@ -17,6 +17,6 @@ import java.util.List;
public interface FeignKylinPerformanceClient {
// 演出列表
@GetMapping(value = "performance/list")
@GetMapping(value = "kylin/performance/list")
ResponseDto<List<KylinPerformanceVo>> performanceList(@RequestParam("performancesIds") String... performancesIds);
}
......@@ -12,9 +12,9 @@ import org.springframework.web.bind.annotation.PostMapping;
fallback = FallbackFactory.Default.class)
public interface FeignKylinTaskClient {
@PostMapping("order/checkOrderTime")
@PostMapping("kylin/order/checkOrderTime")
ResponseDto<Boolean> checkOrderTime();
@PostMapping("performance/checkPerformanceTime")
@PostMapping("kylin/performance/checkPerformanceTime")
ResponseDto<String> checkPerformanceTime();
}
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