2019-08-15更新

This commit is contained in:
Hellohao
2019-08-15 17:08:16 +08:00
parent a5eed7b1f4
commit b9c5f52a4b
14 changed files with 263 additions and 43 deletions
@@ -0,0 +1,16 @@
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);
}