删多了,补回来
parent
9f1fac8385
commit
f21bed01e0
|
@ -8,5 +8,5 @@ import com.muyu.system.domain.SysConfig;
|
|||
* @description: 配置mybatis配置
|
||||
* @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业务层
|
||||
* @Date 2023-11-13 上午 10:06
|
||||
*/
|
||||
public interface SysConfigService{
|
||||
public interface SysConfigService extends IService<SysConfig> {
|
||||
List<SysConfig> pageQuery (SysConfig config);
|
||||
|
||||
/**
|
||||
|
|
|
@ -23,7 +23,8 @@ import java.util.Objects;
|
|||
* @Date 2023-11-13 上午 10:06
|
||||
*/
|
||||
@Service
|
||||
public class SysConfigServiceImpl implements SysConfigService {
|
||||
public class SysConfigServiceImpl extends ServiceImpl<SysConfigMapper, SysConfig>
|
||||
implements SysConfigService {
|
||||
|
||||
@Autowired
|
||||
private RedisService redisService;
|
||||
|
|
Loading…
Reference in New Issue