wuxw
2019-08-09 bf47d41dddf76c58a41692e492014499f9d433ae
java110-core/src/main/java/com/java110/core/smo/community/ICommunityInnerServiceSMO.java
@@ -3,7 +3,8 @@
import com.java110.core.feign.FeignConfiguration;
import com.java110.dto.CommunityMemberDto;
import org.springframework.cloud.netflix.feign.FeignClient;
import com.java110.dto.community.CommunityDto;
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;
@@ -23,6 +24,24 @@
public interface ICommunityInnerServiceSMO {
    /**
     * <p>查询小区楼信息</p>
     *
     *
     * @param communityDto 数据对象分享
     * @return CommunityDto 对象数据
     */
    @RequestMapping(value = "/queryCommunitys", method = RequestMethod.POST)
    List<CommunityDto> queryCommunitys(@RequestBody CommunityDto communityDto);
    /**
     * 查询<p>小区楼</p>总记录数
     *
     * @param communityDto 数据对象分享
     * @return 小区下的小区楼记录数
     */
    @RequestMapping(value = "/queryCommunitysCount", method = RequestMethod.POST)
    int queryCommunitysCount(@RequestBody CommunityDto communityDto);
    /**
     * 查询小区成员表