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;
|
}
|
}
|