package com.gkhy.system.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.gkhy.system.domain.ApplyRecord;
|
import com.gkhy.system.domain.SysSettings;
|
|
import java.util.List;
|
|
/**
|
* 系统配置Service接口
|
*
|
* @author expert
|
* @date 2024-11-13
|
*/
|
public interface ISysSettingsService extends IService<SysSettings> {
|
/**
|
* 查询系统配置
|
*
|
* @return 系统配置
|
*/
|
public String selectSysSettings();
|
|
|
/**
|
* 修改系统配置
|
*
|
* @param sysSettings 系统配置
|
* @return 结果
|
*/
|
public int updateSysSettings(String sysSettings);
|
|
/**
|
* 查询开启申请记录列表
|
*
|
* @return 开启申请记录集合
|
*/
|
public List<ApplyRecord> selectApplyRecordList();
|
|
|
}
|