mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
17 lines
338 B
Java
17 lines
338 B
Java
package cn.hellohao.service;
|
|
|
|
import cn.hellohao.dao.SysConfigMapper;
|
|
import cn.hellohao.pojo.SysConfig;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author Hellohao
|
|
* @version 1.0
|
|
* @date 2019/8/15 13:46
|
|
*/
|
|
@Service
|
|
public interface SysConfigService {
|
|
SysConfig getstate();
|
|
Integer setstate(SysConfig sysConfig);
|
|
}
|