|
|
@ -9,6 +9,7 @@ import com.epmet.commons.tools.security.dto.TokenDto; |
|
|
|
import com.epmet.commons.tools.utils.DateUtils; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
import com.epmet.modules.partyOrg.service.IcPartyOrgCensusService; |
|
|
|
import com.epmet.modules.partyOrg.service.IcPartyOrgLeaderService; |
|
|
|
import com.epmet.modules.partyOrg.service.YiFengPartyOrgService; |
|
|
|
import com.epmet.modules.partymember.service.IcPartyPlaceService; |
|
|
@ -17,6 +18,7 @@ import com.epmet.resi.partymember.dto.IcPartyPlaceDTO; |
|
|
|
import com.epmet.resi.partymember.dto.icpartyact.form.IcPartyActPageFormDTO; |
|
|
|
import com.epmet.resi.partymember.dto.icpartyact.result.IcPartyActDetailResDTO; |
|
|
|
import com.epmet.resi.partymember.dto.icpartyact.result.IcPartyActPageResultDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.IcPartyOrgCensusDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.IcPartyOrgLeaderDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanPartyOrgAndOtherObjQtyRstDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanScreenPartyObjectByTypeRstDTO; |
|
|
@ -47,7 +49,22 @@ public class YiFengScreenController { |
|
|
|
@Autowired |
|
|
|
private IcPartyOrgLeaderService icPartyOrgLeaderService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private IcPartyOrgCensusService icPartyOrgCensusService; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 党组织统计列表 |
|
|
|
* @param type: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<java.util.List < com.epmet.resi.partymember.dto.partyOrg.IcPartyOrgCensusDTO>> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/3/7 13:35 |
|
|
|
*/ |
|
|
|
@GetMapping("partyOrgCensusList") |
|
|
|
public Result<List<IcPartyOrgCensusDTO>> partyOrgCensusList(@RequestParam String type){ |
|
|
|
List<IcPartyOrgCensusDTO> result = icPartyOrgCensusService.partyOrgCensusList(type); |
|
|
|
return new Result<List<IcPartyOrgCensusDTO>>().ok(result); |
|
|
|
} |
|
|
|
/** |
|
|
|
* @Description: 领导班子列表 |
|
|
|
* @param type: |
|
|
|