@@ -16,6 +16,9 @@ public interface LoanApplicationHistoryRepository extends CrudRepository<LoanApp
LoanApplicationHistoryfindById(Longid);
@Query(value="select * from loan_application_history where id=?1 or user_id= ?1 order by id desc limit 1",nativeQuery=true)
LoanApplicationHistoryfindByIdOrUserId(Longid);
@Query(value="select * from loan_application_history where user_id= ?1 and business_type= ?2 and is_active= 1 order by id desc limit 1",nativeQuery=true)