|
|
@ -10,6 +10,7 @@ import com.elink.esua.epdc.dto.analysis.pc.screen.form.*; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.result.*; |
|
|
|
import com.elink.esua.epdc.modules.screen.dao.EpdcScreenDao; |
|
|
|
import com.elink.esua.epdc.modules.screen.service.EpdcScreenService; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
@ -134,8 +135,11 @@ public class EpdcScreenServiceImpl extends BaseServiceImpl<EpdcScreenDao, EpdcSc |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Result<List<EpdcScreenEpidemicCompanyVaccinationStatisticsResultDTO>> epidemicCompanyVaccinationStatisticsList() { |
|
|
|
List<EpdcScreenEpidemicCompanyVaccinationStatisticsResultDTO> data = baseDao.epidemicCompanyVaccinationStatisticsList(); |
|
|
|
public Result<List<EpdcScreenEpidemicCompanyVaccinationStatisticsResultDTO>> epidemicCompanyVaccinationStatisticsList(EpdcScreenEpidemicCompanyVaccinationStatisticsFormDto formDto) { |
|
|
|
if (StringUtils.isEmpty(formDto.getTypeKey())) { |
|
|
|
formDto.setTypeKey("street_party"); |
|
|
|
} |
|
|
|
List<EpdcScreenEpidemicCompanyVaccinationStatisticsResultDTO> data = baseDao.epidemicCompanyVaccinationStatisticsList(formDto); |
|
|
|
return new Result<List<EpdcScreenEpidemicCompanyVaccinationStatisticsResultDTO>>().ok(data); |
|
|
|
} |
|
|
|
|
|
|
|