From 4caca9954a7641207b1947f397b15550c6e92900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E8=B1=AA?= <1437200870@qq.com> Date: Thu, 8 Aug 2024 22:29:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/muyu/domain/req/CustomerListReq.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud-pay-common/src/main/java/com/muyu/domain/req/CustomerListReq.java b/cloud-pay-common/src/main/java/com/muyu/domain/req/CustomerListReq.java index 2696bab..7f9571a 100644 --- a/cloud-pay-common/src/main/java/com/muyu/domain/req/CustomerListReq.java +++ b/cloud-pay-common/src/main/java/com/muyu/domain/req/CustomerListReq.java @@ -23,19 +23,19 @@ public class CustomerListReq { /** * 服务/客户名称 */ - @Schema(type = "String" , defaultValue = "客户名称", description = "客户的名称") + @Schema(type = "String" , title = "客户名称", description = "客户的名称") private String appName; /** * 服务/客户编号 */ - @Schema(type = "String" , defaultValue = "customer_code", description = "客户的编码") + @Schema(type = "String" , defaultValue = "customer_code", title = "客户的编码") private String appCode; /** * 是否开启 */ - @Schema(type = "String" ,defaultValue = "Y", description = "客户状态,Y是对,N关闭") + @Schema(type = "String" ,defaultValue = "Y",description = "客户状态,Y是对,N关闭" , title = "客户状态,Y是对,N关闭") @IsSystemYesNo private String status;