| package com.moral.api.service; | 
|   | 
| import com.moral.api.entity.Group; | 
| import com.baomidou.mybatisplus.extension.service.IService; | 
| import com.moral.api.pojo.dto.group.GroupDTO; | 
| import com.moral.api.pojo.form.group.AdminGroupUpdateMenuForm; | 
|   | 
| /** | 
|  * <p> | 
|  * 用户自定义角色表 服务类 | 
|  * </p> | 
|  * | 
|  * @author moral | 
|  * @since 2021-03-09 | 
|  */ | 
| public interface GroupService extends IService<Group> { | 
|   | 
|     /** | 
|      * @Description: 查询组织对应的admin角色 | 
|      * @Param: [organizationId] | 
|      * @return: com.moral.api.entity.Group | 
|      * @Author: 陈凯裕 | 
|      * @Date: 2021/5/13 | 
|      */ | 
|     Group queryAdminGroupByOrganizationId(Integer organizationId); | 
|   | 
|     /** | 
|      * @Description: 更新admin角色菜单 | 
|      * @Param: [GroupMenuUpdateForm form] | 
|      * @return: com.moral.constant.ResultMessage | 
|      * @Author: 陈凯裕 | 
|      * @Date: 2021/5/11 | 
|      */ | 
|     GroupDTO updateAdminGroupMenu(AdminGroupUpdateMenuForm form); | 
|   | 
| } |