| | |
| | | * @param id |
| | | * @param templateName |
| | | */ |
| | | void articleProcess(Long id, String templateName, String templatPath); |
| | | void articleProcess(Map<String, Object> data, String templateName, String templatePath); |
| | | |
| | | /** |
| | | * 栏目编译 |
| | |
| | | * @param templateName 模板名称 |
| | | * @param columnOnly 是否只编译当前栏目列表页(如果false,则会编译栏目下所有子栏目或者所有文章) |
| | | */ |
| | | void columnProcess(Map<String, Object> map, String templateName, boolean columnOnly); |
| | | void columnProcess(Map<String, Object> map, String templateName); |
| | | |
| | | void indexProcess(Map<String, Object> map, String templateName); |
| | | |