From be4a356f82b7bf7b3e0091c74aee19c65c36df3a Mon Sep 17 00:00:00 2001 From: 86191 <2160251938@qq.com> Date: Sat, 3 Aug 2024 18:10:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95api?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= 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 674b161..227bdfd 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(name = "服务/客户名称",type = "string",description = "客户名称:为微服务中文名称") + @Schema(type = "string",description = "客户名称:为微服务中文名称") private String appName; /** * 服务/客户编码 */ - @Schema(name = "服务/客户编码",type = "string",description = "客户名称:为微服务名称") + @Schema(name = "appCode",type = "string",description = "客户名称:为微服务名称") private String appCode; /** * 状态 */ - @Schema(name = "是否开启",type = "string",description = "客户状态:Y是开启,N是关闭") + @Schema(type = "string",description = "客户状态:Y是开启,N是关闭") @IsSystemYesNo private String status; }