Rev 35679 |
Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 34658 |
ranu |
1 |
package com.spice.profitmandi.dao.repository.auth;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
import com.spice.profitmandi.dao.entity.auth.SipMaster;
|
|
|
6 |
import org.springframework.stereotype.Repository;
|
|
|
7 |
|
|
|
8 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
|
|
9 |
import com.spice.profitmandi.dao.entity.auth.AuthUser;
|
|
|
10 |
|
|
|
11 |
@Repository
|
|
|
12 |
public interface SipRepository {
|
|
|
13 |
|
|
|
14 |
SipMaster selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
|
|
|
15 |
|
|
|
16 |
}
|