2021与蓝度共同重构项目,服务端
liuhaonan
2022-02-14 37041ac6ae6baa2996f447e495f6f5280113c4a2
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
package com.sandu.ximon.admin.manager.iot.rrpc.enums;
 
/**
 * MQTT产品码
 */
public class MqttPDK {
        //  东奥产品码
//    public static final String O2OPDK = "a1l4eXCHcdW";
 
    //  安卓主板产品码
    public static final String O2OPDK = "a1Q0gybrqHj";
 
    //  串口主板产品码
    public static final String MAINBOARD_PDK = "a1JsfPG4iKW";
 
    //  LCD屏幕产品码
    public static final String LCD_PDK = "a1G5XmY0SXU";
 
 
    public static boolean inPDK(String productKey) {
        if(!productKey.equals(O2OPDK)) {
            if(!productKey.equals(MAINBOARD_PDK)) {
                if(!productKey.equals(LCD_PDK)) {
                    return false;
                }
            }
        }
        return true;
    }
}