Subversion Repositories SmartDukaan

Rev

Rev 30348 | Rev 33248 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30348 Rev 30808
Line 5... Line 5...
5
import java.util.Map;
5
import java.util.Map;
6
 
6
 
7
import org.springframework.stereotype.Service;
7
import org.springframework.stereotype.Service;
8
 
8
 
9
import com.spice.profitmandi.dao.model.PartnerCollectionPlanModel;
9
import com.spice.profitmandi.dao.model.PartnerCollectionPlanModel;
-
 
10
import com.spice.profitmandi.dao.model.TotalTargetColectionModel;
10
 
11
 
11
@Service
12
@Service
12
public interface PartnerCollectionService {
13
public interface PartnerCollectionService {
13
 
14
 
14
	Map<Integer, PartnerCollectionPlanModel> getCollectionMap(List<Integer> fofoIdList, LocalDateTime startDate);
15
	Map<Integer, PartnerCollectionPlanModel> getCollectionMap(List<Integer> fofoIdList, LocalDateTime startDate);
-
 
16
 
-
 
17
	TotalTargetColectionModel getTotalTargetCollection(Map<Integer, PartnerCollectionPlanModel> todayPcpmMap,
-
 
18
			LocalDateTime startDate);
15
}
19
}