【新增功能】 设备数据存储和展示

This commit is contained in:
安浩浩
2024-11-03 00:16:46 +08:00
parent 3dafd31da6
commit 624f5283b3
20 changed files with 523 additions and 108 deletions

View File

@@ -30,7 +30,7 @@ public enum IotProductFunctionTypeEnum implements IntArrayValuable {
*/
private final String description;
public static IotProductFunctionTypeEnum valueOf(Integer type) {
public static IotProductFunctionTypeEnum valueOfType(Integer type) {
for (IotProductFunctionTypeEnum value : values()) {
if (value.getType().equals(type)) {
return value;