修改pojo的swager3信息

master
张腾 2024-08-04 14:22:14 +08:00
parent b438a0b2ea
commit c68ffb8c63
1 changed files with 3 additions and 3 deletions

View File

@ -25,20 +25,20 @@ public class CustomerListReq {
/** /**
* / * /
*/ */
@Schema(name = "服务/客户名称",type = "String",description = "客户名称,为微服务中文名称") @Schema(defaultValue = "服务名称1",type = "String",description = "客户名称,为微服务中文名称")
private String appName; private String appName;
/** /**
* *
*/ */
@Schema(name = "服务/客户编码",type = "String",description = "客户名称,为微服务名称") @Schema(name = "appCode",defaultValue = "ASDFGHJKL8848" ,type = "String",description = "客户名称,为微服务名称")
private String appCode; private String appCode;
/** /**
* *
* sys_yes_no * sys_yes_no
*/ */
@Schema(name = "是否开启",type = "String",defaultValue = "客户状态,Y是开启,N是关闭") @Schema(type = "String",defaultValue = "Y",description = "客户状态,Y是开启,N是关闭")
@IsSystemYesNo @IsSystemYesNo
private String status; private String status;
} }