修改测试api参数

master
86191 2024-08-03 18:10:24 +08:00
parent bee2544d68
commit be4a356f82
1 changed files with 3 additions and 3 deletions

View File

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