From 29dcb49c490125c1fb78d1f401cf1daa87a5fc39 Mon Sep 17 00:00:00 2001 From: iseki Date: Fri, 17 Jul 2020 19:08:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=99=E4=B8=AA=E5=B1=9E=E6=80=A7=E6=98=AF?= =?UTF-8?q?=E4=B8=8D=E6=98=AF=E8=AF=A5=E5=88=A0=E6=8E=89=EF=BC=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- generator/src/main/resources/templates/controller.java.vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/src/main/resources/templates/controller.java.vm b/generator/src/main/resources/templates/controller.java.vm index 1553312..8c42da8 100644 --- a/generator/src/main/resources/templates/controller.java.vm +++ b/generator/src/main/resources/templates/controller.java.vm @@ -150,7 +150,7 @@ public class ${table.controllerName} { #if(${cfg.operationLog}) @OperationLog(name = "$!{table.comment}分页列表", type = OperationLogType.PAGE) #end - @ApiOperation(value = "$!{table.comment}分页列表", response = ${entity}${cfg.queryVo}.class) + @ApiOperation(value = "$!{table.comment}分页列表") public ApiResult> get${entity}PageList(#if(${cfg.paramValidation})@Validated #end@RequestBody ${entity}${cfg.pageParam} ${cfg.entityObjectName}${cfg.pageParam}) throws Exception { Paging<${entity}${cfg.queryVo}> paging = ${cfg.entityObjectName}Service.get${entity}PageList(${cfg.entityObjectName}${cfg.pageParam}); return ApiResult.ok(paging); -- Gitee