package com.ghy.system.service; import com.ghy.system.domain.SysDeptConfig; /** * @author clunt * 部门配置Service层 */ public interface ISysDeptConfigService { /** * @param deptId 当前登陆用户的部门id * @return 部门配置 */ public SysDeptConfig selectByDeptId(Long deptId); }