|
|
@ -3,6 +3,7 @@ package com.elink.esua.epdc.modules.screen.service.impl; |
|
|
|
import com.elink.esua.epdc.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
|
import com.elink.esua.epdc.commons.tools.constant.NumConstant; |
|
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
import com.elink.esua.epdc.commons.tools.validator.AssertUtils; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.item.result.ItemResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.form.*; |
|
|
|
import com.elink.esua.epdc.commons.tools.validator.ValidatorUtils; |
|
|
@ -96,6 +97,20 @@ public class EpdcScreenServiceImpl extends BaseServiceImpl<EpdcScreenDao, EpdcSc |
|
|
|
return new Result<List<EpdcScreenPartyBuildingBrightIdentityResultDTO>>().ok(data); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result recommended(String id) { |
|
|
|
AssertUtils.isBlank(id,"id"); |
|
|
|
baseDao.recommended(id); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result recommendedCancel(String id) { |
|
|
|
AssertUtils.isBlank(id,"id"); |
|
|
|
baseDao.recommendedCancel(id); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<List<EpdcScreenPartyBuildingPartyMemberAgeResultDTO>> partyMemberAge() { |
|
|
|
List<EpdcScreenPartyBuildingPartyMemberAgeResultDTO> data = baseDao.partyMemberAge(); |
|
|
|