huangzhen
2023-12-20 25a1cd1e6f6be895cdf19d49286969cbbca59eb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.gkhy.fourierSpecialGasMonitor.service;
 
import com.gkhy.fourierSpecialGasMonitor.commons.domain.Result;
import com.gkhy.fourierSpecialGasMonitor.entity.GasThreshold;
import com.gkhy.fourierSpecialGasMonitor.entity.req.UpdateGasThresholdReqDTO;
import com.gkhy.fourierSpecialGasMonitor.entity.req.UpdateRegionReqDTO;
 
import java.util.List;
 
/**
 * @author Mr.huang
 * @decription
 * @date 2023/8/9 14:33
 */
public interface GasThresholdService {
    Result gasThresholdList();
 
    Result updateGasThreshold(UpdateGasThresholdReqDTO reqDto);
 
    List<GasThreshold> findAll();
 
}