DeviceAlertService.java 285 B

12345678910111213141516
  1. package com.usky.fire.service;
  2. import com.usky.fire.domain.DeviceAlert;
  3. import com.usky.common.mybatis.core.CrudService;
  4. /**
  5. * <p>
  6. * 设备告警 服务类
  7. * </p>
  8. *
  9. * @author JCB
  10. * @since 2022-11-04
  11. */
  12. public interface DeviceAlertService extends CrudService<DeviceAlert> {
  13. }