|
|
@ -13,6 +13,7 @@ import com.epmet.modules.partyOrg.service.IcPartyOrgCensusService; |
|
|
|
import com.epmet.modules.partyOrg.service.IcPartyOrgLeaderService; |
|
|
|
import com.epmet.modules.partyOrg.service.IcPartyWishService; |
|
|
|
import com.epmet.modules.partyOrg.service.YiFengPartyOrgService; |
|
|
|
import com.epmet.modules.partymember.service.IcParameterConfigService; |
|
|
|
import com.epmet.modules.partymember.service.IcPartyPlaceService; |
|
|
|
import com.epmet.modules.partymember.service.IcPartymemberStyleService; |
|
|
|
import com.epmet.modules.partymember.service.YiFengScreenService; |
|
|
@ -25,6 +26,7 @@ import com.epmet.resi.partymember.dto.partyOrg.IcPartyOrgLeaderDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.IcPartyWishDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanPartyOrgAndOtherObjQtyRstDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanScreenPartyObjectByTypeRstDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.IcParameterConfigDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.IcPartymemberStyleDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.form.PartyMemberStyleFormDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.result.*; |
|
|
@ -61,7 +63,22 @@ public class YiFengScreenController { |
|
|
|
private IcPartyWishService icPartyWishService; |
|
|
|
@Autowired |
|
|
|
private IcPartymemberStyleService icPartymemberStyleService; |
|
|
|
@Autowired |
|
|
|
private IcParameterConfigService icParameterConfigService; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 参数配置 |
|
|
|
* @param type: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<java.util.List < com.epmet.resi.partymember.dto.partymember.IcParameterConfigDTO>> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/3/12 14:49 |
|
|
|
*/ |
|
|
|
@GetMapping("selectConfigList") |
|
|
|
public Result<List<IcParameterConfigDTO>> selectConfigList(@RequestParam String type){ |
|
|
|
List<IcParameterConfigDTO> result = icParameterConfigService.selectConfigList(type); |
|
|
|
return new Result<List<IcParameterConfigDTO>>().ok(result); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 党员风采详情 |
|
|
|