package com.gk.hotwork.Service; import com.baomidou.mybatisplus.extension.service.IService; import com.gk.hotwork.Domain.GasWarnInfo; import com.gk.hotwork.Domain.Utils.PageInfo; public interface GasWarnService extends IService { void selectDataGrid(PageInfo pageInfo); GasWarnInfo selectExistByType(Long id,String warntype, String gastype); GasWarnInfo selectByType(String gastype,String warntype); }