ghy-all/ghy-system/src/main/java/com/ghy/system/service/ISysDeptConfigService.java

18 lines
323 B
Java
Raw Normal View History

2022-03-18 15:04:01 +08:00
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);
}