package com.gkhy.testFourierSpecialGasMonitor.service;
|
|
import com.gkhy.testFourierSpecialGasMonitor.commons.domain.Result;
|
import com.gkhy.testFourierSpecialGasMonitor.entity.GasThreshold;
|
import com.gkhy.testFourierSpecialGasMonitor.entity.req.UpdateGasThresholdReqDTO;
|
|
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();
|
|
}
|