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