com.haoxuer.discover.web.data.service.WebThemeService 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.WebTheme;
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日10:16:29.
*/
public interface WebThemeService {
WebTheme findById(String id);
WebTheme key(String name);
WebTheme save(WebTheme bean);
WebTheme update(WebTheme bean);
WebTheme deleteById(String id);
WebTheme[] deleteByIds(String[] ids);
Page page(Pageable pageable);
Page page(Pageable pageable, Object search);
List list(int first, Integer size, List filters, List orders);
}