All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zznote.basecommon.dao.TDeptDao Maven / Gradle / Ivy

The newest version!
package com.zznote.basecommon.dao;


import com.zznote.basecommon.common.mapper.BaseMapperPlus;
import com.zznote.basecommon.entity.system.TDept;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * 部门表
 * 
 * @author zhangzhen
 * @email [email protected]
 * @date 2022-04-12 17:04:24
 */
@Mapper
public interface TDeptDao extends BaseMapperPlus {

    /**
     * 根据角色ID查询部门树信息
     *
     * @param roleId            角色ID
     * @param deptCheckStrictly 部门树选择项是否关联显示
     * @return 选中部门列表
     */
    List selectDeptListByRoleId(@Param("roleId") Long roleId, @Param("deptCheckStrictly") boolean deptCheckStrictly);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy