refactor(系统设置): 授权管理返回值增加swagger注解

This commit is contained in:
wxg0103 2023-08-11 13:59:35 +08:00 committed by fit2-zhao
parent 398c490001
commit c4b5d2dd55
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package io.metersphere.sdk.dto; package io.metersphere.sdk.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data; import lombok.Data;
import java.io.Serializable; import java.io.Serializable;
@ -9,25 +10,31 @@ public class LicenseInfoDTO implements Serializable {
/** /**
* 客户名称 * 客户名称
*/ */
@Schema(description = "客户名称")
private String corporation; private String corporation;
/** /**
* 授权截止时间 * 授权截止时间
*/ */
@Schema(description = "授权截止时间")
private String expired; private String expired;
/** /**
* 产品名称 * 产品名称
*/ */
@Schema(description = "产品名称")
private String product; private String product;
/** /**
* 产品版本 * 产品版本
*/ */
@Schema(description = "产品版本")
private String edition; private String edition;
/** /**
* icense版本 * icense版本
*/ */
@Schema(description = "license版本")
private String licenseVersion; private String licenseVersion;
/** /**
* 授权数量 * 授权数量
*/ */
@Schema(description = "授权数量")
private int count; private int count;
} }