package zy.cloud.wms.system.service.impl; import com.baomidou.mybatisplus.service.impl.ServiceImpl; import zy.cloud.wms.system.entity.Dept; import zy.cloud.wms.system.mapper.DeptMapper; import zy.cloud.wms.system.service.DeptService; import zy.cloud.wms.system.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service("deptService") public class DeptServiceImpl extends ServiceImpl implements DeptService { @Autowired private UserService userService; @Override public int getMemberCount(Long deptId) { Dept dept = selectById(deptId); return 0; } }