leutu
2024-06-03 3ef35e6cd16bbfa206b26bb3271eac40ad020bcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.fastbee.common.constant;
 
/**
 *
 * @author fastb
 * @date 2023-08-03 10:20
 */
public class ProductAuthConstant {
 
    /**
     * 产品设备认证方式-简单认证
     */
    public static final Integer AUTH_WAY_SIMPLE = 1;
    /**
     * 产品设备认证方式-简单认证
     */
    public static final Integer AUTH_WAY_ENCRYPT = 2;
    /**
     * 产品设备认证方式-简单认证
     */
    public static final Integer AUTH_WAY_SIMPLE_AND_ENCRYPT = 3;
 
    /**
     * 产品设备客户端ID认证类型-简单认证
     */
    public static final String CLIENT_ID_AUTH_TYPE_SIMPLE = "S";
 
    /**
     * 产品设备客户端ID认证类型-简单认证
     */
    public static final String CLIENT_ID_AUTH_TYPE_ENCRYPT = "E";
    /**
     * 设备授权
     */
    public static final Integer AUTHORIZE = 1;
    /**
     * 设备没有授权
     */
    public static final Integer NO_AUTHORIZE = 1;
 
}