Rev 25915 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 25899 |
tejbeer |
1 |
package com.spice.profitmandi.dao.repository.dtr;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import org.springframework.stereotype.Repository;
|
|
|
6 |
|
|
|
7 |
import com.spice.profitmandi.dao.entity.user.Lead;
|
|
|
8 |
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
|
|
|
9 |
|
|
|
10 |
@Repository
|
|
|
11 |
public interface LeadRepository {
|
|
|
12 |
public void persist(Lead lead);
|
|
|
13 |
|
|
|
14 |
public List<Lead> selectByAuthIdAndStatus(int authId, LeadStatus status, int offset, int limit);
|
|
|
15 |
|
|
|
16 |
public Lead selectById(int id);
|
|
|
17 |
}
|