|
@@ -0,0 +1,19 @@
|
|
|
+package com.xy;
|
|
|
+
|
|
|
+import com.xy.service.AuthorizeService;
|
|
|
+import com.xy.service.DeviceService;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+@Service
|
|
|
+@AllArgsConstructor
|
|
|
+public class DeviceServiceImpl implements DeviceService {
|
|
|
+
|
|
|
+ private AuthorizeService authorizeService;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void deviceTest() {
|
|
|
+ System.out.println("deviceTest");
|
|
|
+ authorizeService.authorizeTest();
|
|
|
+ }
|
|
|
+}
|