package com.engine.organization.mapper.department; import com.engine.organization.entity.department.po.DepartmentPO; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @Author weaver_cl * @Description: TODO * @Date 2022/5/20 * @Version V1.0 **/ public interface DepartmentMapper { List getDeptListByCompId(@Param("parentComp") int parentComp); List getDeptListByPId(@Param("PId")Long PId); String getDeptNameById(@Param("id")int id); }