jinpengyong
2021-08-23 3bc57d8582d3d13e7e653b0f04dd09742c3b2c15
screen-api/src/main/java/com/moral/api/service/UserGroupService.java
@@ -1,6 +1,5 @@
package com.moral.api.service;
import java.util.List;
import java.util.Map;
import com.moral.api.entity.UserGroup;
@@ -16,7 +15,7 @@
 */
public interface UserGroupService extends IService<UserGroup> {
    void allotGroups(Map<String, Object> parameters, String token);
    //用户分配组(角色)
    void allotGroups(Map<String, Object> parameters);
    List<Integer> getGroupIds(Integer userId);
}