Explorar el Código

训练营下单推送

lixueqiang hace 2 años
padre
commit
ad8fd761a4

+ 2 - 1
kxs-system/kxs-system-api/src/main/java/com/kxs/system/api/feign/RemoteSysService.java

@@ -6,6 +6,7 @@ import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestHeader;
 import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.service.annotation.GetExchange;
+import org.springframework.web.service.annotation.PostExchange;
 
 /**
  * 定时任务调用系统模块的服务
@@ -30,7 +31,7 @@ public interface RemoteSysService {
 	 * @param param 参数
 	 * @param from  从
 	 */
-	@GetExchange("/camp/prizePoolIsRefreshed")
+	@PostExchange("/camp/prizePoolIsRefreshed")
 	void prizePoolIsRefreshed(@RequestBody PrizePoolDTO param, @RequestHeader(SecurityConstants.FROM) String from);
 
 }