package com.zy.crm.system.service; import com.baomidou.mybatisplus.service.IService; import com.zy.crm.system.entity.Dept; public interface DeptService extends IService { Dept getTop(Long hostId); int getMemberCount(Long deptId); }