| | |
| | | import com.panzhihua.common.model.dtos.partybuilding.*; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.partybuilding.*; |
| | | import com.panzhihua.common.service.partybuilding.PartyBuildingService; |
| | | import com.panzhihua.service_dangjian.dao.ComPbOrgDAO; |
| | | import com.panzhihua.service_dangjian.model.dos.ComPbMemberDO; |
| | | import com.panzhihua.service_dangjian.model.dos.ComPbOrgDO; |
| | |
| | | import com.panzhihua.service_dangjian.service.ComPbMemberService; |
| | | import com.panzhihua.service_dangjian.service.ComPbServiceTeamService; |
| | | import com.panzhihua.service_dangjian.service.PartyOrganizationService; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.util.ObjectUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | private ComPbServiceTeamService comPbServiceTeamService; |
| | | @Resource |
| | | private ComPbOrgDAO comPbOrgDAO; |
| | | @Resource |
| | | private PartyBuildingService partyBuildingService; |
| | | |
| | | /** |
| | | * 社区所有启用的党组织列表 |
| | |
| | | public R exportPbMember(@RequestBody PagePartyOrganizationVO organizationVO){ |
| | | return comPbMemberService.exportPbMember(organizationVO); |
| | | } |
| | | |
| | | /** |
| | | * 选择人员 |
| | | * @param param 查询条件 |
| | | * @return 查询结果 |
| | | */ |
| | | @PostMapping("getTotlePerson") |
| | | public R getTotlePerson(@RequestParam(value = "param", required = false) String param, @RequestParam(value = "communityId") Long communityId){ |
| | | return comPbServiceTeamService.getTotlePerson(param,communityId); |
| | | } |
| | | } |