master
陈思豪 2024-08-04 10:19:51 +08:00
parent 2719a27415
commit 8d6cb9bbb6
1 changed files with 3 additions and 3 deletions

View File

@ -23,19 +23,19 @@ public class CustomerListReq {
/** /**
* / * /
*/ */
@Schema(name = "服务/客户名称",type = "String" , description = "客户的名称") @Schema(type = "String" , defaultValue = "客户名称", description = "客户的名称")
private String appName; private String appName;
/** /**
* / * /
*/ */
@Schema(name = "服务/客户编码",type = "String" , description = "客户的编码") @Schema(type = "String" , defaultValue = "customer_code", description = "客户的编码")
private String appCode; private String appCode;
/** /**
* *
*/ */
@Schema(name = "是否开启",type = "String" , description = "客户状态Y是对N关闭") @Schema(type = "String" ,defaultValue = "Y", description = "客户状态Y是对N关闭")
@IsSystemYesNo @IsSystemYesNo
private String status; private String status;