license常量信息

This commit is contained in:
fengjunfeng
2022-01-13 19:00:24 +08:00
parent 0552e11b68
commit e9f2532a78
2 changed files with 27 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
package com.sentinel.license.utils;
/**
* @author fengjunfeng
* @date 2022/1/13
* @time 13:45
* @description
**/
public class Constant {
//获取c2v信息
public static final Integer LICENSE_C2V = 1;
//更新license信息
public static final Integer LICENSE_UPDATE = 2;
//查询license信息
public static final Integer LICENSE_QUERY = 3;
//验证授权信息
public static final Integer LICENSE_VERIFY = 4;
}