mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
25 lines
632 B
Java
25 lines
632 B
Java
package cn.hellohao.service.impl;
|
|
|
|
import cn.hellohao.dao.ConfigMapper;
|
|
import cn.hellohao.pojo.Config;
|
|
import cn.hellohao.pojo.Images;
|
|
import cn.hellohao.service.ConfigService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class ConfigServiceImpl implements ConfigService {
|
|
@Autowired
|
|
private ConfigMapper configMapper;
|
|
|
|
@Override
|
|
public Config getSourceype() {
|
|
return configMapper.getSourceype();
|
|
}
|
|
|
|
@Override
|
|
public Integer setSourceype(Config config) {
|
|
return configMapper.setSourceype(config);
|
|
}
|
|
}
|