This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-license-admi…/src/main/java/com/license/bean/LicenseInfo.java

26 lines
420 B
Java
Raw Normal View History

2022-01-21 16:20:07 +08:00
package com.license.bean;
2021-12-29 11:37:15 +08:00
import lombok.Data;
/**
* @author fengjunfeng
* @date 2021/12/28
* @time 18:06
* @description
**/
@Data
public class LicenseInfo {
private String V2C;
private String vendorCode;
private Integer featureId;
// 1 获取指纹 2 更新license 3 获取license信息 4 验证license信息
private Integer type;
2022-01-21 16:20:07 +08:00
//提供服务标识
private String serverId;
2021-12-29 11:37:15 +08:00
}