Rev 30808 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.model.PartnerCollectionPlanModel;import com.spice.profitmandi.dao.model.TotalTargetColectionModel;import org.springframework.stereotype.Service;import java.time.LocalDateTime;import java.util.List;import java.util.Map;@Servicepublic interface PartnerCollectionService {Map<Integer, PartnerCollectionPlanModel> getCollectionMap(List<Integer> fofoIdList, LocalDateTime startDate) throws ProfitMandiBusinessException;TotalTargetColectionModel getTotalTargetCollection(Map<Integer, PartnerCollectionPlanModel> todayPcpmMap,LocalDateTime startDate);}