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

feature/model
zlyx 2 years ago
parent 77fa4e0aa8
commit 798bc43f6a

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

@ -7,7 +7,7 @@ import ${packageName}.domain.${ClassName};
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.ExcelProperty;
import org.dromara.common.excel.annotation.ExcelDictFormat; import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.convert.excelExcelDictConvert; import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper; import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data; import lombok.Data;

Loading…
Cancel
Save