+ * 枚举 {@link TODO worder_status 对应的类}
+ */
+ private Integer worderStatus;
+
+ /**
+ * fwid
+ */
+ private Long fwId;
+
+ /**
+ * 指派人电话
+ */
+ private String assignPhone;
+ private Long tenantId;
+}
\ No newline at end of file
diff --git a/iot-dao/iot-data-service/pom.xml b/iot-dao/iot-data-service/pom.xml
new file mode 100644
index 0000000..29b44ed
--- /dev/null
+++ b/iot-dao/iot-data-service/pom.xml
@@ -0,0 +1,37 @@
+
+
+
+ iot-dao
+ cc.iotkit
+ 0.5.3
+
+ 4.0.0
+ 0.5.3
+ iot-data-service
+
+
+
+
+ cc.iotkit
+ iot-data-model
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.8.1
+
+ ${java.version}
+ ${java.version}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/ICommonData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/ICommonData.java
new file mode 100644
index 0000000..303792d
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/ICommonData.java
@@ -0,0 +1,89 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data;
+
+import cc.iotkit.common.api.PageRequest;
+import cc.iotkit.common.api.Paging;
+import cc.iotkit.model.Id;
+
+import java.util.Collection;
+import java.util.List;
+
+/**
+ * 数据基础服务接口
+ */
+public interface ICommonData, ID> {
+
+ /**
+ * 通过ID取数据
+ */
+ T findById(ID id);
+
+ /**
+ * 通过ID取数据
+ */
+ List findByIds(Collection id);
+
+
+ /**
+ * 保存数据,id不为空更新,否则添加
+ */
+ T save(T data) ;
+
+
+ /**
+ * 批量保存数据
+ */
+ void batchSave(List data) ;
+ /**
+ * 按id删除
+ */
+ void deleteById(ID id) ;
+ /**
+ * 按id批量删除
+ */
+ void deleteByIds(Collection ids) ;
+ /**
+ * 总数统计
+ */
+ long count();
+ /**
+ * 取所有数据
+ */
+ List findAll() ;
+
+ /**
+ * 分页获取所有信息
+ */
+ Paging findAll(PageRequest pageRequest) ;
+
+ /**
+ * 按条件查询多个结果
+ */
+ List findAllByCondition(T data);
+
+ /**
+ * 按条件查询单个结果
+ */
+ T findOneByCondition(T data);
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/IOwnedData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/IOwnedData.java
new file mode 100644
index 0000000..f0dc58b
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/IOwnedData.java
@@ -0,0 +1,57 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data;
+
+import cc.iotkit.common.api.Paging;
+import cc.iotkit.model.Owned;
+
+import java.util.Collections;
+import java.util.List;
+
+/**
+ * 数据基础服务接口
+ */
+public interface IOwnedData, ID> extends ICommonData {
+
+ /**
+ * 按所属用户取数据
+ * @return
+ */
+ default List findByUid(String uid) {
+ return Collections.emptyList();
+
+ }
+
+ default Paging findByUid(String uid, int page, int size) {
+ return null;
+ }
+
+ /**
+ * 按所属用户统计总数
+ */
+ default long countByUid(String uid) {
+ return 0L;
+
+ }
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IAlertConfigData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IAlertConfigData.java
new file mode 100644
index 0000000..3932964
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IAlertConfigData.java
@@ -0,0 +1,43 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.common.api.PageRequest;
+import cc.iotkit.common.api.Paging;
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.alert.AlertConfig;
+
+import java.util.List;
+
+
+public interface IAlertConfigData extends ICommonData {
+
+ List findByUidAndRuleInfoId(String uid, String ruleInfoId);
+ List findByRuleInfoId(String ruleInfoId);
+ List findByDeviceName(String deviceName);
+ List findByUidAndRuleInfoIdAndDeviceName(String uid, String ruleInfoId,String deviceName);
+
+ Paging selectAlertConfigPage(PageRequest request);
+
+ List findByRuleInfoIdAndDeviceName(String ruleInfoId,String deviceName);
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IAlertRecordData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IAlertRecordData.java
new file mode 100644
index 0000000..a431af4
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IAlertRecordData.java
@@ -0,0 +1,48 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.common.api.PageRequest;
+import cc.iotkit.common.api.Paging;
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.alert.AlertRecord;
+import cc.iotkit.model.alert.AlertRecordBo;
+import cc.iotkit.model.stats.AlertStatDTO;
+
+import java.util.List;
+
+
+public interface IAlertRecordData extends ICommonData {
+
+
+ Paging selectAlertConfigPage(PageRequest request);
+ Paging selectAlertRecordPageExcel(PageRequest request);
+
+
+
+ List selectAlertConfigPage(AlertRecordBo request);
+
+ List getAlertRecord();
+
+ long countByUid(String uid);
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/ICategoryData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/ICategoryData.java
new file mode 100644
index 0000000..d7f203f
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/ICategoryData.java
@@ -0,0 +1,29 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.product.Category;
+
+public interface ICategoryData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelConfigData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelConfigData.java
new file mode 100644
index 0000000..4de9b79
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelConfigData.java
@@ -0,0 +1,35 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.notify.ChannelConfig;
+
+/**
+ * author: 石恒
+ * date: 2023-05-11 17:15
+ * description:
+ **/
+public interface IChannelConfigData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelData.java
new file mode 100644
index 0000000..ba4b8bf
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelData.java
@@ -0,0 +1,36 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.notify.Channel;
+
+/**
+ * author: 石恒
+ * date: 2023-05-11 17:15
+ * description:
+ **/
+public interface IChannelData extends ICommonData {
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelTemplateData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelTemplateData.java
new file mode 100644
index 0000000..2bdd9fb
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IChannelTemplateData.java
@@ -0,0 +1,35 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.notify.ChannelTemplate;
+
+/**
+ * author: 石恒
+ * date: 2023-05-11 17:15
+ * description:
+ **/
+public interface IChannelTemplateData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDIccidRecordData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDIccidRecordData.java
new file mode 100644
index 0000000..390ae46
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDIccidRecordData.java
@@ -0,0 +1,36 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.iccid.DIccidRecordDO;
+import cc.iotkit.model.space.Home;
+
+import java.util.List;
+
+
+public interface IDIccidRecordData extends ICommonData {
+
+ DIccidRecordDO findByImei(String Imei);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceConfigData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceConfigData.java
new file mode 100644
index 0000000..d7e78d5
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceConfigData.java
@@ -0,0 +1,34 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.device.DeviceConfig;
+
+public interface IDeviceConfigData extends ICommonData {
+
+ DeviceConfig findByDeviceName(String deviceName);
+
+ DeviceConfig findByDeviceId(String deviceId);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceDetectorInfoData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceDetectorInfoData.java
new file mode 100644
index 0000000..ebdfdb4
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceDetectorInfoData.java
@@ -0,0 +1,35 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.data.IOwnedData;
+import cc.iotkit.model.device.DeviceDetectorInfo;
+import cc.iotkit.model.iccid.DIccidRecordDO;
+
+
+public interface IDeviceDetectorInfoData extends IOwnedData {
+
+
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceGroupData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceGroupData.java
new file mode 100644
index 0000000..3433518
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceGroupData.java
@@ -0,0 +1,33 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.common.api.Paging;
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.device.DeviceGroup;
+
+public interface IDeviceGroupData extends ICommonData {
+
+ Paging findByNameLike(String name, int page, int size);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceInfoData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceInfoData.java
new file mode 100644
index 0000000..d90b79b
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceInfoData.java
@@ -0,0 +1,207 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.common.api.Paging;
+import cc.iotkit.data.IOwnedData;
+import cc.iotkit.model.device.DeviceInfo;
+import cc.iotkit.model.device.message.DevicePropertyCache;
+import cc.iotkit.model.stats.AlertStatDTO;
+import cc.iotkit.model.stats.DataItem;
+import cc.iotkit.model.stats.ProductKeyCountDTO;
+import cc.iotkit.model.stats.SysDeptDto;
+
+import java.util.Date;
+import java.util.List;
+import java.util.Map;
+
+public interface IDeviceInfoData extends IOwnedData {
+
+ /**
+ * 保存设备属性
+ *
+ * @param deviceId 设备id
+ * @param properties 设备属性map
+ */
+ void saveProperties(String deviceId, Map properties);
+
+ /**
+ * 获取设备属性map
+ *
+ * @param deviceId 设备id
+ */
+ Map getProperties(String deviceId);
+ SysDeptDto getStatsCount(Long deptAreaId);
+ /**
+ * 获取设备属性更新时间
+ *
+ * @param deviceId 设备id
+ * @return timestamp
+ */
+ long getPropertyUpdateTime(String deviceId);
+
+ /**
+ * 获取设备最新通讯时间
+ *
+ * @param deviceId 设备id
+ * @return timestamp
+ */
+ long getLastTime(String deviceId);
+ /**
+ * 设置设备最新通讯时间
+ *
+ * @param deviceId 设备id
+ * @return timestamp
+ */
+ void setLastTime(String deviceId, long lastTime);
+
+ /**
+ * 根据设备ID取设备信息
+ *
+ * @param deviceId 设备ID
+ */
+ DeviceInfo findByDeviceId(String deviceId);
+
+ /**
+ * 根据父设备ID取子设备列表
+ *
+ * @param parentId 父设备ID
+ */
+ List findByParentId(String parentId);
+ public List findByConditionsList(String productKey);
+ public List findByConditionsList(String productKey,Boolean flag);
+ /**
+ * 根据父设备ID取子设备ID列表
+ *
+ * @param parentId 父设备ID
+ */
+ List findSubDeviceIds(String parentId);
+
+ /**
+ * 根据deviceName查找设备
+ */
+ DeviceInfo findByDeviceName(String deviceName);
+ List findByDeptAreaIdAndProductKey(Long areaDeptId,String productKey);
+ /**
+ * 按条件搜索设备
+ *
+ * @param uid 所属账号id
+ * @param subUid 子账号id
+ * @param productKey 产品key
+ * @param groupId 设备分组
+ * @param online 是否在线:true在线,false离线
+ * @param keyword 关键字
+ * @param page 页码
+ * @param size 分页大小
+ */
+ Paging findByConditions(String name,String uid, String subUid, String productKey,
+ String groupId, Boolean online, String keyword,
+ int page, int size,Long areaDepeId,String startTime,String endTime,String deviceName,Integer deviceStatus);
+ Paging findByConditions(String name,String uid, String subUid, String productKey,
+ String groupId, Boolean online, String keyword,
+ int page, int size,Long areaDepeId,String startTime,String endTime,String deviceName);
+ Paging findByConditionsExcel(String name,String uid, String subUid, String productKey,
+ String groupId, Boolean online, String keyword,
+ int page, int size,Long areaDepeId,String startTime,String endTime);
+
+
+
+
+ Paging findByConditions1(String name,String uid, String subUid, String productKey,
+ String groupId, Boolean online, String keyword,
+ int page, int size,Long areaDepeId,String startTime,String endTime,String deviceName);
+ /**
+ * 更新设备标签
+ *
+ * @param deviceId 设备ID
+ * @param tag 标签
+ */
+ void updateTag(String deviceId, DeviceInfo.Tag tag);
+
+ /**
+ * 获取按品类统计的用户设备数
+ */
+ List getDeviceStatsByCategory(String uid);
+ List getProductDevice(Long deptAreaId, String startDate, String endDate);
+ /**
+ * 按分组id统计设备数量
+ */
+ long countByGroupId(String groupId);
+
+ long countByUidAndState(String uid,String state);
+ /**
+ * 将设备添加到分组
+ *
+ * @param deviceId 设备ID
+ * @param group 设备分组
+ */
+ void addToGroup(String deviceId, DeviceInfo.Group group);
+
+ /**
+ * 按组id更新设备分组
+ *
+ * @param groupId 分组ID
+ * @param group 设备分组信息
+ */
+ void updateGroup(String groupId, DeviceInfo.Group group);
+
+ /**
+ * 移除指定设备信息中的分组
+ *
+ * @param deviceId 设备ID
+ * @param groupId 分组ID
+ */
+ void removeGroup(String deviceId, String groupId);
+
+ /**
+ * 移除设备信息中的分组
+ *
+ * @param groupId 分组ID
+ */
+ void removeGroup(String groupId);
+
+ /**
+ * 获取所有网关类型设备
+ *
+ * @return
+ */
+ List findByProductNodeType(String uid);
+
+ /**
+ * 是否存在product类型的设备
+ *
+ * @param productKey
+ * @return
+ */
+ boolean existByProductKey(String productKey);
+
+ /**
+ * 查找待激活设备
+ * @return
+ */
+ List findNeverUsedDevices();
+ Long findNeverUsedDevices(DeviceInfo deviceInfo,Boolean flag);
+ List getDeviceRecord();
+
+ List findByDeptAreaIdAndProductKeyAndDeviceName(Long areaDeptId, String productKey, String deviceName);
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceInstallInfoData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceInstallInfoData.java
new file mode 100644
index 0000000..b7fe366
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceInstallInfoData.java
@@ -0,0 +1,38 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.IOwnedData;
+import cc.iotkit.model.device.DeviceDetectorInfo;
+import cc.iotkit.model.device.DeviceInstallInfo;
+
+
+public interface IDeviceInstallInfoData extends IOwnedData {
+
+
+ DeviceInstallInfo findByDeviceNameAndUid(String deviceName,String uid);
+ DeviceInstallInfo findByDeviceNameAndUidAndState(String deviceName,String uid,Integer state);
+
+ DeviceInstallInfo findById(String id);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceIssueData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceIssueData.java
new file mode 100644
index 0000000..e97a580
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceIssueData.java
@@ -0,0 +1,36 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.data.IOwnedData;
+import cc.iotkit.model.device.DeviceInfo;
+import cc.iotkit.model.device.DeviceInstallInfo;
+import cc.iotkit.model.device.DeviceIssue;
+
+
+public interface IDeviceIssueData extends ICommonData {
+
+ DeviceIssue findByTenantId(Long tenantId);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceOtaDetailData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceOtaDetailData.java
new file mode 100644
index 0000000..b7f4bc5
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceOtaDetailData.java
@@ -0,0 +1,36 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.ota.DeviceOtaDetail;
+import cc.iotkit.model.ota.DeviceOtaInfo;
+
+/**
+ * @Author: 石恒
+ * @Date: 2023/6/15 22:14
+ * @Description:
+ */
+public interface IDeviceOtaDetailData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceOtaInfoData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceOtaInfoData.java
new file mode 100644
index 0000000..5475b43
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IDeviceOtaInfoData.java
@@ -0,0 +1,35 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.ota.DeviceOtaInfo;
+
+/**
+ * @Author: 石恒
+ * @Date: 2023/6/15 22:14
+ * @Description:
+ */
+public interface IDeviceOtaInfoData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IFeedBackEvaluationData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IFeedBackEvaluationData.java
new file mode 100644
index 0000000..e610370
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IFeedBackEvaluationData.java
@@ -0,0 +1,34 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.FeedBackEvaluation.FeedBackEvaluationDO;
+
+
+
+public interface IFeedBackEvaluationData extends ICommonData {
+
+
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IHomeData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IHomeData.java
new file mode 100644
index 0000000..588e7f9
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IHomeData.java
@@ -0,0 +1,39 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.space.Home;
+
+import java.util.List;
+
+
+public interface IHomeData extends ICommonData {
+
+ Home findByUserIdAndCurrent(Long userId, boolean current);
+
+ List findByUserId(Long userId);
+
+ boolean checkHomeNameUnique(Home home);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IIconData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IIconData.java
new file mode 100644
index 0000000..b078484
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IIconData.java
@@ -0,0 +1,34 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.product.Icon;
+
+/**
+ * @Author: tfd
+ * @Date: 2024/4/25 14:32
+ * @Description:
+ */
+public interface IIconData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IIconTypeData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IIconTypeData.java
new file mode 100644
index 0000000..10527ea
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IIconTypeData.java
@@ -0,0 +1,33 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.product.IconType;
+/**
+ * @Author: tfd
+ * @Date: 2024/4/25 14:32
+ * @Description:
+ */
+public interface IIconTypeData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/INotifyMessageData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/INotifyMessageData.java
new file mode 100644
index 0000000..e902ebb
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/INotifyMessageData.java
@@ -0,0 +1,35 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.notify.NotifyMessage;
+
+/**
+ * @Author: 石恒
+ * @Date: 2023/5/13 18:32
+ * @Description:
+ */
+public interface INotifyMessageData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOauthClientData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOauthClientData.java
new file mode 100644
index 0000000..854eb34
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOauthClientData.java
@@ -0,0 +1,32 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.OauthClient;
+
+public interface IOauthClientData extends ICommonData {
+
+ OauthClient findByClientId(String clientId);
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOtaDeviceData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOtaDeviceData.java
new file mode 100644
index 0000000..07b9739
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOtaDeviceData.java
@@ -0,0 +1,35 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.ota.OtaDevice;
+
+/**
+ * @Author: 石恒
+ * @Date: 2023/5/25 23:40
+ * @Description:
+ */
+public interface IOtaDeviceData extends ICommonData {
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOtaPackageData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOtaPackageData.java
new file mode 100644
index 0000000..0ac25cb
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IOtaPackageData.java
@@ -0,0 +1,36 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.ota.OtaPackage;
+
+/**
+ * @Author: 石恒
+ * @Date: 2023/5/19 21:46
+ * @Description:
+ */
+public interface IOtaPackageData extends ICommonData {
+
+}
diff --git a/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IPluginInfoData.java b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IPluginInfoData.java
new file mode 100644
index 0000000..75d07ef
--- /dev/null
+++ b/iot-dao/iot-data-service/src/main/java/cc/iotkit/data/manager/IPluginInfoData.java
@@ -0,0 +1,43 @@
+/*
+ *
+ * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
+ * * +----------------------------------------------------------------------
+ * * | Author: xw2sy@163.com
+ * * +----------------------------------------------------------------------
+ *
+ * Copyright [2024] [OPENIITA]
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * /
+ */
+package cc.iotkit.data.manager;
+
+import cc.iotkit.data.ICommonData;
+import cc.iotkit.model.plugin.PluginInfo;
+
+/**
+ * 插件信息接口
+ *
+ * @author sjg
+ */
+public interface IPluginInfoData extends ICommonData