feat(): 生成接口文档

master
DongZeLiang 2024-07-31 14:06:20 +08:00
parent dcdee87b2a
commit d412a94df0
1 changed files with 3 additions and 3 deletions

View File

@ -24,19 +24,19 @@ 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;
/**
* - sys_yes_no
*/
@Schema(type = "String", description = "客户状态Y是开启N关闭")
@Schema(type = "String", defaultValue = "Y", description = "客户状态Y是开启N关闭")
@IsSystemYesNo
private String status;
}