Rev 35679 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository.auth;import java.util.List;import com.spice.profitmandi.dao.entity.auth.SipMaster;import org.springframework.stereotype.Repository;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.auth.AuthUser;@Repositorypublic interface SipRepository {SipMaster selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;}