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/utils/Constant.java
fengjunfeng 9a8f2d47ac 目录修改
2022-01-21 16:24:47 +08:00

23 lines
443 B
Java

package com.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;
}