This commit is contained in:
none
2023-03-06 16:06:56 +08:00
parent 866b8e0759
commit 32f6966706
5 changed files with 39 additions and 7 deletions

View File

@@ -27,4 +27,6 @@ public interface UserService extends IService<User> {
User createWithDepIds(String email, String name, String avatar, String password, String idCard, Integer[] depIds);
User updateWithDepIds(User user, String email, String nickname, String name, String avatar, String password, String idCard, Integer[] depIds);
List<Integer> getDepIdsByUserId(Integer userId);
}