From dcdee87b2ac794be1e62ec7bb94dedfeaca98060 Mon Sep 17 00:00:00 2001 From: DongZeLiang <2746733890@qq.com> Date: Wed, 31 Jul 2024 14:04:09 +0800 Subject: [PATCH] =?UTF-8?q?feat():=20=E6=B5=8B=E8=AF=95=E4=BF=AE=E6=94=B9A?= =?UTF-8?q?pi=E6=8E=A5=E5=8F=A3=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 e8479ad..cf6746f 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(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; /** * 状态 - sys_yes_no */ - @Schema(name = "是否开启", type = "String", description = "客户状态,Y是开启,N关闭") + @Schema(type = "String", description = "客户状态,Y是开启,N关闭") @IsSystemYesNo private String status; }