fix: 微信小程序接口对接修改,联调测试问题修复。
This commit is contained in:
@@ -0,0 +1,105 @@
|
||||
package com.intc.iot.constant;
|
||||
|
||||
/**
|
||||
* 物联网平台设备属性名称常量
|
||||
*
|
||||
* @author intc
|
||||
* @date 2026-01-14
|
||||
*/
|
||||
public class IOTPropertyName {
|
||||
|
||||
private IOTPropertyName() {
|
||||
}
|
||||
|
||||
// ========== 水质检测仪属性 ==========
|
||||
/**
|
||||
* 物联网卡号
|
||||
*/
|
||||
public static final String ICCID = "ICCID";
|
||||
|
||||
/**
|
||||
* 溶解氧
|
||||
*/
|
||||
public static final String DISSOLVED_OXYGEN = "dissolvedOxygen";
|
||||
|
||||
/**
|
||||
* PH值
|
||||
*/
|
||||
public static final String PH = "PH";
|
||||
|
||||
/**
|
||||
* 水温
|
||||
*/
|
||||
public static final String CURRENT_TEMPERATURE = "currentTemperature";
|
||||
|
||||
/**
|
||||
* 饱和度
|
||||
*/
|
||||
public static final String DOSAT = "dosat";
|
||||
|
||||
/**
|
||||
* 故障码
|
||||
*/
|
||||
public static final String ERROR_CODE = "errorCode";
|
||||
|
||||
/**
|
||||
* 校准检测
|
||||
*/
|
||||
public static final String T_CORRECT = "Tcorrect";
|
||||
|
||||
/**
|
||||
* 盐度
|
||||
*/
|
||||
public static final String SALINITY = "salinity";
|
||||
|
||||
/**
|
||||
* 盐度设置
|
||||
*/
|
||||
public static final String SALINITY_SET = "salinitySet";
|
||||
|
||||
/**
|
||||
* 参比值
|
||||
*/
|
||||
public static final String T_REFERENCE = "Treference";
|
||||
|
||||
/**
|
||||
* 荧光值
|
||||
*/
|
||||
public static final String T_FLUORESCENCE = "Tfluorescence";
|
||||
|
||||
/**
|
||||
* 相位差
|
||||
*/
|
||||
public static final String PHASE_DIFFERENCE = "Phasedifference";
|
||||
|
||||
/**
|
||||
* 设备校准
|
||||
*/
|
||||
public static final String CORRECT = "correct";
|
||||
|
||||
// ========== 控制器属性 ==========
|
||||
/**
|
||||
* 控制器额定电压
|
||||
*/
|
||||
public static final String RATED_VOLTAGE = "rated_voltage";
|
||||
|
||||
/**
|
||||
* 控制器开关定时控制(前缀)
|
||||
*/
|
||||
public static final String LOCAL_TIMER_SWITCH = "localTimer_switch";
|
||||
|
||||
/**
|
||||
* 控制器开关(前缀)
|
||||
*/
|
||||
public static final String SWITCH_INDEX = "Switch";
|
||||
|
||||
/**
|
||||
* 控制器开关额定电流(前缀)
|
||||
*/
|
||||
public static final String RATING_SWITCH_INDEX = "rating_switch";
|
||||
|
||||
/**
|
||||
* 控制器传感器故障码
|
||||
*/
|
||||
public static final String SENSOR_ERROR_CODE = "sensorErrorCode";
|
||||
}
|
||||
Reference in New Issue
Block a user