| package com.doumee.biz.system; | 
|   | 
| import com.doumee.dao.system.model.SystemPermission; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 系统权限业务处理 | 
|  * @author  dm | 
|  * @since 2025/03/31 16:44 | 
|  */ | 
| public interface SystemPermissionBiz { | 
|   | 
|     /** | 
|      * 删除 | 
|      * | 
|      * @param id 权限ID | 
|      */ | 
|     void deleteById(Integer id); | 
|   | 
|     /** | 
|      * 批量删除 | 
|      * | 
|      * @param ids 权限ID列表 | 
|      */ | 
|     void deleteByIdInBatch(List<Integer> ids); | 
|   | 
|     /** | 
|      * 创建 | 
|      * | 
|      * @param systemPermission 权限 | 
|      * @return Integer | 
|      */ | 
|     Integer create(SystemPermission systemPermission); | 
|   | 
|     /** | 
|      * 修改 | 
|      * | 
|      * @param systemPermission 权限 | 
|      */ | 
|     void updateById(SystemPermission systemPermission); | 
| } |