fix 修正代码生成模板包名异常 ;

This commit is contained in:
zlyx
2023-04-06 09:38:58 +08:00
parent 77fa4e0aa8
commit 798bc43f6a
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ public class ${ClassName}Controller extends BaseController {
@GetMapping("/list")
#if($table.crud || $table.sub)
public TableDataInfo<${ClassName}Vo> list(${ClassName}Bo bo, PageQuery pageQuery) {
return i${ClassName}Service.queryPageList(bo, pageQuery);
return ${className}Service.queryPageList(bo, pageQuery);
}
#elseif($table.tree)
public R<List<${ClassName}Vo>> list(${ClassName}Bo bo) {