refactor(系统设置): 授权管理返回值增加swagger注解
This commit is contained in:
parent
398c490001
commit
c4b5d2dd55
|
@ -1,5 +1,6 @@
|
|||
package io.metersphere.sdk.dto;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
@ -9,25 +10,31 @@ public class LicenseInfoDTO implements Serializable {
|
|||
/**
|
||||
* 客户名称
|
||||
*/
|
||||
@Schema(description = "客户名称")
|
||||
private String corporation;
|
||||
/**
|
||||
* 授权截止时间
|
||||
*/
|
||||
@Schema(description = "授权截止时间")
|
||||
private String expired;
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
@Schema(description = "产品名称")
|
||||
private String product;
|
||||
/**
|
||||
* 产品版本
|
||||
*/
|
||||
@Schema(description = "产品版本")
|
||||
private String edition;
|
||||
/**
|
||||
* icense版本
|
||||
*/
|
||||
@Schema(description = "license版本")
|
||||
private String licenseVersion;
|
||||
/**
|
||||
* 授权数量
|
||||
*/
|
||||
@Schema(description = "授权数量")
|
||||
private int count;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue