曾成
2020-03-22 ca236e9df91a3bc24115b7ee2212507ddbd28854
java110-core/src/main/java/com/java110/core/smo/owner/IOwnerInnerServiceSMO.java
@@ -1,8 +1,8 @@
package com.java110.core.smo.owner;
import com.java110.core.feign.FeignConfiguration;
import com.java110.dto.OwnerDto;
import org.springframework.cloud.netflix.feign.FeignClient;
import com.java110.dto.owner.OwnerDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@@ -68,4 +68,34 @@
     */
    @RequestMapping(value = "/queryOwnersByCondition", method = RequestMethod.POST)
    List<OwnerDto> queryOwnersByCondition(@RequestBody OwnerDto ownerDto);
    /**
     * 查询<p>小区楼</p>总记录数
     *
     * @param ownerDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/queryNoEnterRoomOwnerCount", method = RequestMethod.POST)
    int queryNoEnterRoomOwnerCount(@RequestBody OwnerDto ownerDto);
    /**
     * 根据房屋查询业主信息
     *
     * @param ownerDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/queryOwnersByRoom", method = RequestMethod.POST)
    List<OwnerDto> queryOwnersByRoom(@RequestBody OwnerDto ownerDto);
    /**
     * 根据停车位查询业主信息
     *
     * @param ownerDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/queryOwnersByParkingSpace", method = RequestMethod.POST)
    List<OwnerDto> queryOwnersByParkingSpace(@RequestBody OwnerDto ownerDto);
}