Subversion Repositories SmartDukaan

Rev

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

Rev 29270 Rev 29277
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, List<Integer> authIds);
29
	public List<Lead> selectAllByStatusAndUpdatedTimestamp(List<LeadStatus> status, LocalDateTime updatedTimestamp);
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,
-
 
42
			List<String> color, LocalDateTime updatedTimestamp);
-
 
43
 
-
 
44
	List<Lead> selectAllByStatusAndUpdatedTimestampAndAuthId(List<LeadStatus> status, LocalDateTime updatedTimestamp,
-
 
45
			List<Integer> authIds);
-
 
46
 
41
	public List<Lead> selectAllByColorStatusAndUpdatedTimestamp(List<LeadStatus> status, List<Integer> authIds,
47
	List<Lead> selectAllByColorStatusAndUpdatedTimestampAndAuthIds(List<LeadStatus> status, List<Integer> authIds,
42
			List<String> color, LocalDateTime updatedTimestamp);
48
			List<String> color, LocalDateTime updatedTimestamp);
43
}
49
}