| | |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyOrganizationVO; |
| | | import com.panzhihua.service_dangjian.model.dos.ComPbOrgDO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * @description: 党组织 |
| | |
| | | @Mapper |
| | | public interface ComPbOrgDAO extends BaseMapper<ComPbOrgDO> { |
| | | |
| | | @Select("select id,`name`,`status` from com_pb_org where community_id = ${partyOrganizationVO.communityId}") |
| | | /** |
| | | * 分页查询党组织列表 |
| | | * @param page 分页参数 |
| | | * @param partyOrganizationVO 请求参数 |
| | | * @return 党组织列表 |
| | | */ |
| | | IPage<PartyOrganizationVO> listPartyOrganizationAll(Page page, |
| | | @Param("partyOrganizationVO") PartyOrganizationVO partyOrganizationVO); |
| | | |
| | | /** |
| | | * 查询党组织下子组织列表 |
| | | * @param partyOrganizationVO 请求参数 |
| | | * @return 党组织下子组织列表 |
| | | */ |
| | | List<PartyOrganizationVO> getChildOrgList(@Param("partyOrganizationVO") PartyOrganizationVO partyOrganizationVO); |
| | | |
| | | /** |
| | | * 查询1级党组织列表 |
| | | * @param partyOrganizationVO 请求参数 |
| | | * @return 1级党组织列表 |
| | | */ |
| | | List<PartyOrganizationVO> getPbOrgAllList(@Param("partyOrganizationVO") PartyOrganizationVO partyOrganizationVO); |
| | | |
| | | } |