1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.xcong.farmer.cms.modules.core.service;
|
| import java.util.Map;
|
| public interface ICmsCoreService {
|
| /**
| * 文章编译
| *
| * @param id
| * @param templateName
| */
| void articleProcess(Long id, String templateName, String templatPath);
|
| /**
| * 栏目编译
| * @param map 栏目页面参数(如: 栏目ID/CODE)
| * @param templateName 模板名称
| * @param columnOnly 是否只编译当前栏目列表页(如果false,则会编译栏目下所有子栏目或者所有文章)
| */
| void columnProcess(Map<String, Object> map, String templateName, boolean columnOnly);
|
| void indexProcess(Map<String, Object> map, String templateName);
|
| }
|
|