25 lines
444 B
Java
25 lines
444 B
Java
package com.ghy.system.service;
|
|
|
|
import com.ghy.system.domain.SysDeptConfig;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author clunt
|
|
* 部门配置Service层
|
|
*/
|
|
public interface ISysDeptConfigService {
|
|
|
|
/**
|
|
* @param deptId 当前登陆用户的部门id
|
|
* @return 部门配置
|
|
*/
|
|
public SysDeptConfig selectByDeptId(Long deptId);
|
|
|
|
/**
|
|
* 获取所有商户的配置
|
|
*/
|
|
List<SysDeptConfig> selectAllMerchant();
|
|
|
|
}
|