| | |
| | | package com.gkhy.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.system.domain.SysSettings; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 系统配置Mapper接口 |
| | |
| | | * @author expert |
| | | * @date 2024-11-13 |
| | | */ |
| | | public interface SysSettingsMapper |
| | | public interface SysSettingsMapper extends BaseMapper<SysSettings> |
| | | { |
| | | /** |
| | | * 查询系统配置 |
| | | * |
| | | * @param state 系统配置主键 |
| | | * @return 系统配置 |
| | | */ |
| | | public SysSettings selectSysSettingsByState(String state); |
| | | public SysSettings selectSysSettingsByState(); |
| | | |
| | | /** |
| | | * 查询系统配置列表 |
| | |
| | | /** |
| | | * 修改系统配置 |
| | | * |
| | | * @param sysSettings 系统配置 |
| | | * @param state 系统配置 |
| | | * @return 结果 |
| | | */ |
| | | public int updateSysSettings(SysSettings sysSettings); |
| | | public int updateSysSettingsState(String state); |
| | | |
| | | /** |
| | | * 删除系统配置 |