|
@ -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.DateUtils; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
|
|
import com.epmet.modules.partyOrg.service.IcPartyOrgLeaderService; |
|
|
import com.epmet.modules.partyOrg.service.YiFengPartyOrgService; |
|
|
import com.epmet.modules.partyOrg.service.YiFengPartyOrgService; |
|
|
import com.epmet.modules.partymember.service.IcPartyPlaceService; |
|
|
import com.epmet.modules.partymember.service.IcPartyPlaceService; |
|
|
import com.epmet.modules.partymember.service.YiFengScreenService; |
|
|
import com.epmet.modules.partymember.service.YiFengScreenService; |
|
@ -16,6 +17,7 @@ import com.epmet.resi.partymember.dto.IcPartyPlaceDTO; |
|
|
import com.epmet.resi.partymember.dto.icpartyact.form.IcPartyActPageFormDTO; |
|
|
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.IcPartyActDetailResDTO; |
|
|
import com.epmet.resi.partymember.dto.icpartyact.result.IcPartyActPageResultDTO; |
|
|
import com.epmet.resi.partymember.dto.icpartyact.result.IcPartyActPageResultDTO; |
|
|
|
|
|
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.LingShanPartyOrgAndOtherObjQtyRstDTO; |
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanScreenPartyObjectByTypeRstDTO; |
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanScreenPartyObjectByTypeRstDTO; |
|
|
import com.epmet.resi.partymember.dto.partymember.result.*; |
|
|
import com.epmet.resi.partymember.dto.partymember.result.*; |
|
@ -42,6 +44,22 @@ public class YiFengScreenController { |
|
|
@Autowired |
|
|
@Autowired |
|
|
private IcPartyPlaceService icPartyPlaceService; |
|
|
private IcPartyPlaceService icPartyPlaceService; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
|
private IcPartyOrgLeaderService icPartyOrgLeaderService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description: 领导班子列表 |
|
|
|
|
|
* @param type: |
|
|
|
|
|
* @Return com.epmet.commons.tools.utils.Result<java.util.List < com.epmet.resi.partymember.dto.partyOrg.IcPartyOrgLeaderDTO>> |
|
|
|
|
|
* @Author: lichao |
|
|
|
|
|
* @Date: 2024/3/6 16:41 |
|
|
|
|
|
*/ |
|
|
|
|
|
@GetMapping("partyOrgLeaderList") |
|
|
|
|
|
public Result<List<IcPartyOrgLeaderDTO>> partyOrgLeaderList(@RequestParam String type){ |
|
|
|
|
|
List<IcPartyOrgLeaderDTO> result = icPartyOrgLeaderService.partyOrgLeaderList(type); |
|
|
|
|
|
return new Result<List<IcPartyOrgLeaderDTO>>().ok(result); |
|
|
|
|
|
} |
|
|
/** |
|
|
/** |
|
|
* @Description: 移风党建列表 |
|
|
* @Description: 移风党建列表 |
|
|
* @param params: |
|
|
* @param params: |
|
|