Rev 30808 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 30348 |
tejbeer |
1 |
package com.spice.profitmandi.service;
|
|
|
2 |
|
|
|
3 |
import java.time.LocalDateTime;
|
|
|
4 |
import java.util.List;
|
|
|
5 |
import java.util.Map;
|
|
|
6 |
|
|
|
7 |
import org.springframework.stereotype.Service;
|
|
|
8 |
|
|
|
9 |
import com.spice.profitmandi.dao.model.PartnerCollectionPlanModel;
|
|
|
10 |
|
|
|
11 |
@Service
|
|
|
12 |
public interface PartnerCollectionService {
|
|
|
13 |
|
|
|
14 |
Map<Integer, PartnerCollectionPlanModel> getCollectionMap(List<Integer> fofoIdList, LocalDateTime startDate);
|
|
|
15 |
}
|