zhanghua
2023-11-21 bbe76086f95dfb34e942d9f2801e17db38391c68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ycl.smoke.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.smoke.entity.OdsAlarmMsg;
import com.ycl.smoke.entity.OdsStatistics;
 
/**
 * <p>
 * 报警消息 服务类
 * </p>
 *
 * @author lyq
 * @since 2023-02-28
 */
public interface IOdsStatisticsService extends IService<OdsStatistics> {
 
}