Rev 35679 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 34658 |
ranu |
1 |
package com.spice.profitmandi.dao.repository.auth;
|
|
|
2 |
|
| 35679 |
ranu |
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 34658 |
ranu |
4 |
import com.spice.profitmandi.dao.entity.auth.SipMaster;
|
|
|
5 |
import org.springframework.stereotype.Repository;
|
|
|
6 |
|
|
|
7 |
@Repository
|
|
|
8 |
public interface SipRepository {
|
|
|
9 |
|
|
|
10 |
SipMaster selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
|
|
|
11 |
|
| 35679 |
ranu |
12 |
SipMaster selectByCallerId(String callerId) throws ProfitMandiBusinessException;
|
|
|
13 |
|
| 36018 |
amit |
14 |
SipMaster selectBySipUrl(String sipUrl);
|
|
|
15 |
|
|
|
16 |
java.util.List<SipMaster> selectAll();
|
|
|
17 |
|
| 34658 |
ranu |
18 |
}
|