package com.changhong.epc.tenant.mapper.tenant.system;
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.changhong.epc.bean.tenant.system.SystemConfig;
|
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
|
|
/**
|
* 系统配置
|
* @author yuezhw
|
* @date 2017-10-17
|
*
|
*/
|
public interface SystemConfigMapper extends MybatisBaseMapper<SystemConfig> {
|
|
|
/**
|
* 查询全部系统配置
|
* @return List<SystemConfig>
|
*/
|
List<SystemConfig> selectSystem();
|
|
/**
|
* 根据groupKey查询系统配置
|
* @param groupKey
|
* @return
|
*/
|
List<SystemConfig> querySysConfigByGroupKey(SystemConfig systemConfig);
|
|
}
|