package com.xcong.farmer.cms.modules.core.service;
|
|
public interface ICmsCoreService {
|
|
/**
|
* 文章编译
|
*
|
* @param id
|
* @param templateName
|
*/
|
void articleProcess(Long id, String templateName);
|
|
/**
|
* 栏目编译
|
* @param code 栏目代码
|
* @param templateName 模板名称
|
* @param columnOnly 是否只编译当前栏目列表页(如果false,则会编译栏目下所有子栏目或者所有文章)
|
*/
|
void columnProcess(String code, String templateName, boolean columnOnly);
|
|
/**
|
* 栏目编译
|
* @param id 栏目ID
|
* @param templateName 模板名称
|
* @param columnOnly 是否只编译当前栏目列表页(如果false,则会编译栏目下所有子栏目或者所有文章)
|
*/
|
void columnProcess(Long id, String templateName, boolean columnOnly);
|
}
|