生成接口文档
parent
be4a356f82
commit
2518041614
|
@ -17,17 +17,17 @@ public class CustomerListReq {
|
||||||
/**
|
/**
|
||||||
* 服务/客户名称
|
* 服务/客户名称
|
||||||
*/
|
*/
|
||||||
@Schema(type = "string",description = "客户名称:为微服务中文名称")
|
@Schema(type = "string",defaultValue = "客户名称1",description = "客户名称:为微服务中文名称")
|
||||||
private String appName;
|
private String appName;
|
||||||
/**
|
/**
|
||||||
* 服务/客户编码
|
* 服务/客户编码
|
||||||
*/
|
*/
|
||||||
@Schema(name = "appCode",type = "string",description = "客户名称:为微服务名称")
|
@Schema(name = "appCode",defaultValue = "customer_code",type = "string",description = "客户名称:为微服务名称")
|
||||||
private String appCode;
|
private String appCode;
|
||||||
/**
|
/**
|
||||||
* 状态
|
* 状态
|
||||||
*/
|
*/
|
||||||
@Schema(type = "string",description = "客户状态:Y是开启,N是关闭")
|
@Schema(type = "string",defaultValue = "Y",description = "客户状态:Y是开启,N是关闭")
|
||||||
@IsSystemYesNo
|
@IsSystemYesNo
|
||||||
private String status;
|
private String status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue