heheng
2024-11-20 2d27b24029adafdbfc5703b38a519d65beda6a68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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();
 
 
}