1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package com.sf.remote;
- import com.sf.dto.remote.PassengerRespDTO;
- import org.opengoofy.index12306.framework.starter.convention.result.Result;
- import org.springframework.cloud.openfeign.FeignClient;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- import java.util.List;
- /**
- * 用户远程服务调用
- * 公众号:马丁玩编程,回复:加群,添加马哥微信(备注:12306)获取项目资料
- */
- @FeignClient("my-user-service")
- public interface UserRemoteService {
- /**
- * 根据乘车人 ID 集合查询乘车人列表
- */
- @GetMapping("/api/user-service/inner/passenger/actual/query/ids")
- Result<List<PassengerRespDTO>> listPassengerQueryByIds(
- @RequestParam("username") String username, @RequestParam("ids") List<String> ids);
- }
|