From c548522b1bfca076634a06745b91c831b8044027 Mon Sep 17 00:00:00 2001 From: shao1121353141 <> Date: Mon, 25 Sep 2023 19:15:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../employee/common/entity/app/query/GetAppListQuery.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/eiam-common/src/main/java/cn/topiam/employee/common/entity/app/query/GetAppListQuery.java b/eiam-common/src/main/java/cn/topiam/employee/common/entity/app/query/GetAppListQuery.java index 63976272..7eec7900 100644 --- a/eiam-common/src/main/java/cn/topiam/employee/common/entity/app/query/GetAppListQuery.java +++ b/eiam-common/src/main/java/cn/topiam/employee/common/entity/app/query/GetAppListQuery.java @@ -20,6 +20,7 @@ package cn.topiam.employee.common.entity.app.query; import java.io.Serial; import java.io.Serializable; +import io.swagger.v3.oas.annotations.Parameter; import org.springdoc.core.annotations.ParameterObject; import lombok.Data; @@ -39,14 +40,17 @@ public class GetAppListQuery implements Serializable { @Serial private static final long serialVersionUID = -4981513177967939516L; + /** - * name + * 应用名称 */ + @Parameter(description = "应用名称") private String name; /** - * groupId + * 应用分组ID */ + @Parameter(description = "应用分组ID") private Long groupId; }