生成接口文档

master
86191 2024-08-03 18:13:22 +08:00
parent be4a356f82
commit 2518041614
1 changed files with 3 additions and 3 deletions

View File

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