DeviceEventService.java 267 B

1234567891011
  1. package com.hfln.device.application.service;
  2. import com.hfln.device.domain.port.DeviceEventPort;
  3. /**
  4. * 设备事件服务接口
  5. * 处理设备相关的事件操作
  6. */
  7. public interface DeviceEventService extends DeviceEventPort, DeviceEventServiceExtend {
  8. }