java110
2023-08-25 18d1f4bc4f4f77c8883702a00896dd99469db648
java110-interface/src/main/java/com/java110/intf/user/IOwnerCarV1InnerServiceSMO.java
@@ -24,6 +24,7 @@
import org.springframework.web.bind.annotation.RequestMethod;
import java.util.List;
import java.util.Map;
/**
 * 类表述: 服务之前调用的接口类,不对外提供接口能力 只用于接口建调用
@@ -33,7 +34,7 @@
 * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
 * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
 */
@FeignClient(name = "${java110.user-service}", configuration = {FeignConfiguration.class})
@FeignClient(name = "user-service", configuration = {FeignConfiguration.class})
@RequestMapping("/ownerCarV1Api")
public interface IOwnerCarV1InnerServiceSMO {
@@ -64,4 +65,12 @@
     */
    @RequestMapping(value = "/queryOwnerCarsCount", method = RequestMethod.POST)
    int queryOwnerCarsCount(@RequestBody OwnerCarDto ownerCarDto);
    /**
     * 查询业主车辆
     * @param ownerIds
     * @return
     */
    @RequestMapping(value = "/queryOwnerCarCountByOwnerIds", method = RequestMethod.POST)
    List<Map> queryOwnerCarCountByOwnerIds(@RequestBody List<String> ownerIds);
}