| Line 24... |
Line 24... |
| 24 |
|
24 |
|
| 25 |
public List<Lead> selectAllBylistStatus(List<LeadStatus> status);
|
25 |
public List<Lead> selectAllBylistStatus(List<LeadStatus> status);
|
| 26 |
|
26 |
|
| 27 |
public List<Lead> selectAllByStatus(LeadStatus status);
|
27 |
public List<Lead> selectAllByStatus(LeadStatus status);
|
| 28 |
|
28 |
|
| 29 |
public List<Lead> selectAllByStatusAndUpdatedTimestamp(List<LeadStatus> status, LocalDateTime updatedTimestamp);
|
29 |
public List<Lead> selectAllByStatusAndUpdatedTimestamp(List<LeadStatus> status, LocalDateTime updatedTimestamp, List<Integer> authIds);
|
| 30 |
|
30 |
|
| 31 |
public List<Lead> selectAllByStatus(List<LeadStatus> status, int offset, int limit);
|
31 |
public List<Lead> selectAllByStatus(List<LeadStatus> status, int offset, int limit);
|
| 32 |
|
32 |
|
| 33 |
List<Lead> selectLeadsScheduledBetweenDate(LocalDateTime startDate, LocalDateTime endDate);
|
33 |
List<Lead> selectLeadsScheduledBetweenDate(LocalDateTime startDate, LocalDateTime endDate);
|
| 34 |
|
34 |
|
| Line 36... |
Line 36... |
| 36 |
|
36 |
|
| 37 |
public long getLeadCount(LeadStatus status, String searchTerm);
|
37 |
public long getLeadCount(LeadStatus status, String searchTerm);
|
| 38 |
|
38 |
|
| 39 |
public List<Lead> selectBySearchTerm(List<LeadStatus> status, String searchTerm, int offset, int limit);
|
39 |
public List<Lead> selectBySearchTerm(List<LeadStatus> status, String searchTerm, int offset, int limit);
|
| 40 |
|
40 |
|
| 41 |
public List<Lead> selectAllByColorStatusAndUpdatedTimestamp(List<LeadStatus> status, List<String> color,
|
41 |
public List<Lead> selectAllByColorStatusAndUpdatedTimestamp(List<LeadStatus> status, List<Integer> authIds,
|
| 42 |
LocalDateTime updatedTimestamp);
|
42 |
List<String> color, LocalDateTime updatedTimestamp);
|
| 43 |
}
|
43 |
}
|