Your Name
2023-01-27 aadcfd3869942093518104d6c693c8262fa14fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.java110.user.bmo.owner;
 
import com.java110.dto.owner.OwnerDto;
 
import java.util.List;
 
/**
 * 查询业主 房屋 车辆等统计信息
 */
public interface IQueryOwnerStatisticsBMO {
 
    /**
     * 查询业主统计信息
     * @param ownerDtos
     * @return
     */
    List<OwnerDto> query(List<OwnerDto> ownerDtos);
}