| | |
| | | private String activityType; |
| | | |
| | | private String areaCode; |
| | | |
| | | @ApiModelProperty("单次活动时长(小时)") |
| | | private Integer duration; |
| | | } |
| | |
| | | private Integer partyActivityCount; |
| | | |
| | | @ApiModelProperty(value = "党员活动时长(小时)") |
| | | private Integer partyActivityDuration; |
| | | private Integer partyActivityDuration = 0; |
| | | |
| | | @ApiModelProperty(value = "党员活动积分数量") |
| | | private Integer partyActivityIntegral; |
| | |
| | | @ApiOperation(value = "党员数据统计-根据党组织统计数据",response = ComDataStatisticsOrgVo.class) |
| | | @PostMapping("/dataStatistics/org") |
| | | public R getOrgDataStatistics(@RequestBody ComDataStatisticsOrgDto statisticsOrgDto) { |
| | | statisticsOrgDto.setCommunityId(this.getCommunityId()); |
| | | return partyBuildingService.getOrgDataStatistics(statisticsOrgDto); |
| | | } |
| | | |
| | |
| | | cmv.`name` AS areaName, |
| | | cmb.`name` AS buildName, |
| | | cpmr.`name` AS userName, |
| | | cpmr.phone AS phone |
| | | cpmr.phone AS phone, |
| | | (select count(id) from com_pb_member where org_id = cpo.id and audit_result = 1) as countPerson |
| | | FROM |
| | | com_pb_org AS cpo |
| | | LEFT JOIN com_mng_village AS cmv ON cmv.village_id = cpo.area_id |