huangzhen
2024-01-04 4e6ba796be67ccbefb8e0f8f61bbfa12d8e0df6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy.fourierSpecialGasMonitor.service;
 
import com.gkhy.fourierSpecialGasMonitor.commons.domain.Result;
import com.gkhy.fourierSpecialGasMonitor.commons.model.PageQuery;
import com.gkhy.fourierSpecialGasMonitor.entity.DeviceExceptionLog;
import com.gkhy.fourierSpecialGasMonitor.entity.query.DeviceExcLogPageQuery;
 
/**
 * @author Mr.huang
 * @decription
 * @date 2023/8/8 15:12
 */
public interface DeviceExceptionLogService {
    DeviceExceptionLog save(DeviceExceptionLog log);
 
    Result deviceExcLogPage(PageQuery<DeviceExcLogPageQuery> pageQuery);
 
}