@@ -20,9 +20,6 @@ public interface AccountInfoRepo extends AbstractJpaRepo<AccountInfo, String> { | |||
@Query("FROM AccountInfo WHERE mobile=?1 ") | |||
List<AccountInfo> findAllByMobile(String mobile); | |||
@Query("FROM AccountInfo WHERE account=?1") | |||
AccountInfo findByAccount(String account); | |||
@Query("FROM AccountInfo WHERE openId in ?1") | |||
List<AccountInfo> findByOpenIdList(List<String> openIds); | |||
} |