com.haoxuer.discover.web.data.service.WebConfigService 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.service;
import com.haoxuer.discover.web.data.entity.WebConfig;
import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import java.util.List;
/**
* Created by imake on 2017年08月30日09:46:28.
*/
public interface WebConfigService {
WebConfig findById(Long id);
WebConfig config();
WebConfig save(WebConfig bean);
WebConfig update(WebConfig bean);
WebConfig deleteById(Long id);
WebConfig[] deleteByIds(Long[] ids);
Page page(Pageable pageable);
Page page(Pageable pageable, Object search);
List list(int first, Integer size, List filters, List orders);
}