From d412a94df064aaca3bf9b734c049ec347071466a Mon Sep 17 00:00:00 2001 From: DongZeLiang <2746733890@qq.com> Date: Wed, 31 Jul 2024 14:06:20 +0800 Subject: [PATCH] =?UTF-8?q?feat():=20=E7=94=9F=E6=88=90=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/muyu/cloud/pay/domain/req/CustomerListReq.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud-pay-common/src/main/java/com/muyu/cloud/pay/domain/req/CustomerListReq.java b/cloud-pay-common/src/main/java/com/muyu/cloud/pay/domain/req/CustomerListReq.java index cf6746f..c163038 100644 --- a/cloud-pay-common/src/main/java/com/muyu/cloud/pay/domain/req/CustomerListReq.java +++ b/cloud-pay-common/src/main/java/com/muyu/cloud/pay/domain/req/CustomerListReq.java @@ -24,19 +24,19 @@ public class CustomerListReq { /** * 服务/客户名称 */ - @Schema(type = "String", description = "客户名称,为微服务中文名称") + @Schema(type = "String", defaultValue = "客户名称1", description = "客户名称,为微服务中文名称") private String appName; /** * 服务/客户编码 */ - @Schema(name = "appCode", type = "String", description = "客户名称,为微服务名称") + @Schema(name = "appCode", defaultValue = "customer_code", type = "String", description = "客户名称,为微服务名称") private String appCode; /** * 状态 - sys_yes_no */ - @Schema(type = "String", description = "客户状态,Y是开启,N关闭") + @Schema(type = "String", defaultValue = "Y", description = "客户状态,Y是开启,N关闭") @IsSystemYesNo private String status; }