package com.gkhy.exam.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.system.domain.SysFunctionalDistribution; import java.util.List; /** * 部门管理 数据层 * * @author expert */ public interface SysFunctionalDistributionMapper extends BaseMapper { List selectListVo(Long companyId); int batchInsert(List list); int batchUpdate(List list); int delByCompanyId(Long companyId); }