From 002f9e7d3576cc85bc5decd42c7bce02ef4bb6c4 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Mon, 18 Dec 2023 12:59:44 +0800 Subject: [PATCH] chore:测试提交 --- screen-api/src/main/java/com/moral/api/service/UserService.java | 43 ++++++++++++++++++++++++++++++++++++------- 1 files changed, 36 insertions(+), 7 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/service/UserService.java b/screen-api/src/main/java/com/moral/api/service/UserService.java index 242936d..56ef3f0 100644 --- a/screen-api/src/main/java/com/moral/api/service/UserService.java +++ b/screen-api/src/main/java/com/moral/api/service/UserService.java @@ -1,11 +1,16 @@ package com.moral.api.service; -import java.util.List; import java.util.Map; + +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.moral.api.entity.Allocation; import com.moral.api.entity.User; import com.baomidou.mybatisplus.extension.service.IService; + +import com.moral.api.pojo.bo.UserBO; +import com.moral.api.pojo.query.app.AppAllocationPushUserCond; /** * <p> @@ -17,15 +22,39 @@ */ public interface UserService extends IService<User> { - Map<String, Object> login(String account, String password); + //������ + Map<String, Object> login(Map<String, Object> parameters); - Map<String, Object> addUser(User user, Integer currentUserId); + //������������������������ + Map<String,Object> getCurrentUserInfo(); - Map<String, Object> deleteUser(Integer userId, Integer currentUserId); + //������������ + Map<String, Object> getMenus(Map<String, Object> parameters); - Map<String, Object> updateUser(User user, Integer currentUserId); + //������������ + Map<String, Object> addUser(User user); - List<User> getUsersByOrgId(Integer currentUserId); + //������������ + void deleteUser(Integer userId); - User getUserById(Integer userId, Integer currentUserId); + //������������ + Map<String, Object> updateUser(User user); + + //������������������ + Page<User> selectUsers(Map<String, Object> parameters); + + //������������������������������������ + UserBO selectUserInfo(Map<String, Object> parameters); + + //��������������������������� + Map<String, Object> loginSmallRoutine(Map<String, Object> parameters); + + //��������������������� + Map<String, Object> wxLogin(String code); + + boolean updateUserId(Integer userId); + + // ��������������� + void pushOneUser(Allocation appAllocationPushUserCond); + } -- Gitblit v1.8.0