删多了,补回来
parent
9f1fac8385
commit
f21bed01e0
|
@ -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> {
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue