删多了,补回来

master
面包骑士 2024-08-20 14:55:19 +08:00
parent 9f1fac8385
commit f21bed01e0
3 changed files with 4 additions and 3 deletions

View File

@ -8,5 +8,5 @@ import com.muyu.system.domain.SysConfig;
* @description: mybatis * @description: mybatis
* @Date 2023-11-13 10:05 * @Date 2023-11-13 10:05
*/ */
public interface SysConfigMapper{ public interface SysConfigMapper extends BaseMapper<SysConfig> {
} }

View File

@ -10,7 +10,7 @@ import java.util.List;
* @description: plus * @description: plus
* @Date 2023-11-13 10:06 * @Date 2023-11-13 10:06
*/ */
public interface SysConfigService{ public interface SysConfigService extends IService<SysConfig> {
List<SysConfig> pageQuery (SysConfig config); List<SysConfig> pageQuery (SysConfig config);
/** /**

View File

@ -23,7 +23,8 @@ import java.util.Objects;
* @Date 2023-11-13 10:06 * @Date 2023-11-13 10:06
*/ */
@Service @Service
public class SysConfigServiceImpl implements SysConfigService { public class SysConfigServiceImpl extends ServiceImpl<SysConfigMapper, SysConfig>
implements SysConfigService {
@Autowired @Autowired
private RedisService redisService; private RedisService redisService;