fix(XPack): dto引用修改
This commit is contained in:
parent
c089e27ff9
commit
9e785552cb
|
@ -1,6 +1,5 @@
|
||||||
package io.metersphere.dto;
|
package io.metersphere.dto;
|
||||||
|
|
||||||
import io.metersphere.xpack.license.dto.LicenseInfoDTO;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
package io.metersphere.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class LicenseInfoDTO implements Serializable {
|
||||||
|
// 客户名称
|
||||||
|
private String corporation;
|
||||||
|
// 授权截止时间
|
||||||
|
private String expired;
|
||||||
|
//产品名称
|
||||||
|
private String product;
|
||||||
|
//产品版本
|
||||||
|
private String edition;
|
||||||
|
//icense版本
|
||||||
|
private String licenseVersion;
|
||||||
|
//授权数量
|
||||||
|
private int licenseCount;
|
||||||
|
}
|
Loading…
Reference in New Issue