package com.changhong.epc.tenant.service.system; import com.changhong.epc.bean.tenant.system.SystemConfig; import java.util.List; /** * 系统配置 * @author yuezhw * @date 2017-10-17 * */ public interface SystemConfigService { /** * 查询全部系统配置 * @return List */ List selectSytem(); /** * 添加系统配置 * @return Integer */ Integer insert(List systemConfig); /** * 修改系统配置 * @return Integer */ Integer update(List systemConfig); /** * 根据groupKey查询相关配置 * @param systemConfig * @return */ List querySysConfigByGroupKey(SystemConfig systemConfig); }