com.haoxuer.discover.web.data.dao.WebConfigDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-website Show documentation
Show all versions of discover-website Show documentation
discover网站配置模块,主要管理网站主题,网站配置等功能
package com.haoxuer.discover.web.data.dao;
import com.haoxuer.discover.data.core.BaseDao;
import com.haoxuer.discover.data.core.Updater;
import com.haoxuer.discover.web.data.entity.WebConfig;
/**
* Created by imake on 2017年08月30日09:46:28.
*/
public interface WebConfigDao extends BaseDao {
WebConfig findById(Long id);
WebConfig save(WebConfig bean);
WebConfig updateByUpdater(Updater updater);
WebConfig deleteById(Long id);
}