feat():增加接口

master
chentaisen 2024-08-07 11:29:10 +08:00
parent ac80c4d76c
commit de1a7c8c67
1 changed files with 3 additions and 3 deletions

View File

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