Browse Source

增加灯光与声音模块service

master
白凤吉 2 months ago
parent
commit
bfa361425b
  1. 18
      src/main/java/com/iflytop/sgs/app/service/device/module/LightSoundModuleService.java

18
src/main/java/com/iflytop/sgs/app/service/device/module/LightSoundModuleService.java

@ -0,0 +1,18 @@
package com.iflytop.sgs.app.service.device.module;
import com.iflytop.sgs.app.service.device.DeviceCommandService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
* 灯光声音模块
*/
@Slf4j
@Service
@RequiredArgsConstructor
public class LightSoundModuleService {
private final DeviceCommandService deviceCommandService;
}
Loading…
Cancel
Save