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

Commit f3b09606 authored by sunyuntian's avatar sunyuntian

删除picUrl

parent f6e983ef
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>liquidnet-bus-feign</artifactId>
<groupId>com.liquidnet</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>liquidnet-api-feign-goblin</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>
\ No newline at end of file
package com.liquidnet.service.feign.goblin.api;
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.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Component
/*@FeignClient(name = "liquidnet-service-goblin",
contextId = "FeignGoblinArClient",
url = "${liquidnet.service.goblin.url}",
fallback = FallbackFactory.Default.class)*/
public interface FeignGoblinArClient {
@PostMapping("goblin/inner/ar/data")
ResponseDto<Boolean> getArData(@RequestParam("tag") String tag,
@RequestParam("performanceId") String performanceId);
}
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