java110
2022-01-14 c0e1925be3d355c3f1eec92b8aeb8b26824efd3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.java110.user.bmo.org;
 
import com.java110.dto.org.OrgDto;
 
import java.util.List;
 
/**
 * @ClassName IQueryOrgsService
 * @Description TODO 查询组织信息
 * @Author wuxw
 * @Date 2020/7/12 20:04
 * @Version 1.0
 * add by wuxw 2020/7/12
 **/
public interface IQueryOrgsBMO {
 
    /**
     * 查询组织信息
     * @param orgDto
     * @return
     */
    List<OrgDto> queryOrgs(OrgDto orgDto);
}