From 83f07f127934b7acd504acb94797b4ad73ee2eb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E8=B1=AA?= <1437200870@qq.com> Date: Fri, 9 Aug 2024 11:43:40 +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 --- .../main/java/com/muyu/domain/resp/CustomerResp.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cloud-pay-common/src/main/java/com/muyu/domain/resp/CustomerResp.java b/cloud-pay-common/src/main/java/com/muyu/domain/resp/CustomerResp.java index 0fe4c59..ce9ca72 100644 --- a/cloud-pay-common/src/main/java/com/muyu/domain/resp/CustomerResp.java +++ b/cloud-pay-common/src/main/java/com/muyu/domain/resp/CustomerResp.java @@ -39,25 +39,25 @@ public class CustomerResp { /** * 服务/客户编号 */ - @Schema(defaultValue = "客户编码",type = "String" , description = "客户的编码") + @Schema(type = "String" , description = "客户的编码") private String appCode; /** * 客户描述 */ - @Schema(defaultValue = "客户描述",type = "String" , description = "客户名称") + @Schema(type = "String" , description = "客户名称") private String appDesc; /** * 是否开启 */ - @Schema(defaultValue = "Y",type = "String" , description = "客户状态") + @Schema(type = "String" , description = "客户状态") private String status; - @Schema(defaultValue = "创建人",type = "String" , description = "muyu") + @Schema(type = "String" , description = "muyu") private String createBy; - @Schema(defaultValue = "2024-8-4 10:33:25",type = "String" , description = "创建时间") + @Schema(type = "String" , description = "创建时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date createTime;