Subversion Repositories SmartDukaan

Rev

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

Rev 25899 Rev 25915
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.dtr;
1
package com.spice.profitmandi.dao.repository.dtr;
2
 
2
 
-
 
3
import java.time.LocalDateTime;
3
import java.util.List;
4
import java.util.List;
4
 
5
 
5
import org.springframework.stereotype.Repository;
6
import org.springframework.stereotype.Repository;
6
 
7
 
7
import com.spice.profitmandi.dao.entity.user.Lead;
8
import com.spice.profitmandi.dao.entity.user.Lead;
Line 12... Line 13...
12
	public void persist(Lead lead);
13
	public void persist(Lead lead);
13
 
14
 
14
	public List<Lead> selectByAuthIdAndStatus(int authId, LeadStatus status, int offset, int limit);
15
	public List<Lead> selectByAuthIdAndStatus(int authId, LeadStatus status, int offset, int limit);
15
 
16
 
16
	public Lead selectById(int id);
17
	public Lead selectById(int id);
-
 
18
 
-
 
19
	List<Lead> selectLeadsScheduledBetweenDate(LocalDateTime startDate, LocalDateTime endDate);
17
}
20
}