|
|
@ -1,6 +1,9 @@ |
|
|
|
package com.epmet.dataaggre.service.govorg; |
|
|
|
|
|
|
|
import com.epmet.dataaggre.dto.govorg.result.AgencyGridResultDTO; |
|
|
|
import com.epmet.dataaggre.dto.govorg.result.GridInfoResultDTO; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author zxc |
|
|
@ -11,8 +14,15 @@ public interface GovOrgService { |
|
|
|
/** |
|
|
|
* @param staffId |
|
|
|
* @Author sun |
|
|
|
* @Description 党建声音-政府端-可选发布范围接口调用-根据人员角色查询对应的不同发布范围 |
|
|
|
* @Description 组织、网格树结构 |
|
|
|
**/ |
|
|
|
AgencyGridResultDTO agencyGridList(String staffId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @param agencyId |
|
|
|
* @Author sun |
|
|
|
* @Description 根据组织Id查询网格列表 |
|
|
|
**/ |
|
|
|
List<GridInfoResultDTO> gridList(String agencyId); |
|
|
|
|
|
|
|
} |
|
|
|