java110
2023-05-30 3d8ec5c23ef49d0908195c8b5b892920a46aaa8c
java110-interface/src/main/java/com/java110/intf/user/IOwnerV1InnerServiceSMO.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("/ownerV1Api")
public interface IOwnerV1InnerServiceSMO {
@@ -65,4 +66,15 @@
     */
    @RequestMapping(value = "/queryOwnersCount", method = RequestMethod.POST)
    int queryOwnersCount(@RequestBody OwnerDto ownerDto);
    @RequestMapping(value = "/queryOwnersBindCount", method = RequestMethod.POST)
    int queryOwnersBindCount(@RequestBody OwnerDto ownerDto);
    /**
     * 查询 业主成员数
     * @param ownerIds
     * @return
     */
    @RequestMapping(value = "/queryOwnerMembersCount", method = RequestMethod.POST)
    List<Map> queryOwnerMembersCount(@RequestBody List<String> ownerIds);
}