package com.thhy.engineering.modules.biz.device.service; import com.thhy.general.common.BasicResult; import java.util.Map; public interface TBigInspectService { BasicResult bigInspectInsert(Map values); BasicResult bigInspectList(Map values); BasicResult bigInspectInfo(String bigInspectId); BasicResult bigInspectDel(String bigInspectId); BasicResult bigInspectUpdate(Map values); }