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 findAll(); }