From 25180416140acf0762ffea0aa09dfc18f2bbb3f4 Mon Sep 17 00:00:00 2001 From: 86191 <2160251938@qq.com> Date: Sat, 3 Aug 2024 18:13:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E6=88=90=E6=8E=A5=E5=8F=A3=E6=96=87?= =?UTF-8?q?=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 227bdfd..fa4062a 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 @@ -17,17 +17,17 @@ 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; /** * 状态 */ - @Schema(type = "string",description = "客户状态:Y是开启,N是关闭") + @Schema(type = "string",defaultValue = "Y",description = "客户状态:Y是开启,N是关闭") @IsSystemYesNo private String status; }