zhanghua
2023-10-02 b146d1a002c4e3b323810f95bea28a1e47e0d680
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.mapper.smoke;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.dto.smoker.InTimeCountDto;
import com.ycl.entity.smoke.OdsInTime;
 
/**
 * <p>
 * 返回实时的设备数据 Mapper 接口
 * </p>
 *
 * @author lyq
 * @since 2023-02-28
 */
public interface OdsInTimeMapper extends BaseMapper<OdsInTime> {
 
    InTimeCountDto getInTimeCount();
}