|
|
@@ -0,0 +1,22 @@
|
|
|
+package com.shkpr.service.customgateway.core.service.impl;
|
|
|
+
|
|
|
+import com.shkpr.service.customgateway.core.repository.embedded.DeviceTagsRepository;
|
|
|
+import com.shkpr.service.customgateway.core.service.DeviceTagsService;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 设备标签service实现
|
|
|
+ *
|
|
|
+ * @author 欧阳劲驰
|
|
|
+ * @since 1.0.0
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class DeviceTagsServiceImpl implements DeviceTagsService {
|
|
|
+ final
|
|
|
+ DeviceTagsRepository repository;
|
|
|
+
|
|
|
+ public DeviceTagsServiceImpl(DeviceTagsRepository repository) {
|
|
|
+ this.repository = repository;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|