浏览代码

修改AccountInfoRepo

master
huminghao 3 个月前
父节点
当前提交
38ff2a8d94
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0
    3
      gly-base-core/src/main/java/cn/com/taiji/core/repo/jpa/user/AccountInfoRepo.java

+ 0
- 3
gly-base-core/src/main/java/cn/com/taiji/core/repo/jpa/user/AccountInfoRepo.java 查看文件

@@ -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);
}

正在加载...
取消
保存