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/sentinel/license/bean/LicenseInfo.java

24 lines
375 B
Java
Raw Normal View History

2021-12-29 11:37:15 +08:00
package com.sentinel.license.bean;
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;
}