提交修改
This commit is contained in:
@@ -59,6 +59,7 @@ public interface ScadaMapper
|
||||
*/
|
||||
public int deleteScadaById(Long id);
|
||||
|
||||
public int deleteScadaByGuid(String guid);
|
||||
/**
|
||||
* 批量删除组态中心
|
||||
*
|
||||
@@ -96,4 +97,20 @@ public interface ScadaMapper
|
||||
* @return java.util.List<com.xinda.scada.vo.ScadaHistoryModelVO>
|
||||
*/
|
||||
List<ScadaHistoryModelVO> listEventLogHistory(EventLog eventLog);
|
||||
|
||||
String selectGuidBySceneModelId(Long sceneModelId);
|
||||
|
||||
String selectGuidByProductId(Long productId);
|
||||
|
||||
void updateProductGuid(@Param("productId") Long productId, @Param("guid") String guid);
|
||||
|
||||
void updateSceneModelGuid( @Param("sceneModelId") Long sceneModelId, @Param("guid") String guid);
|
||||
|
||||
void deleteProductByGuids(List<String> guids);
|
||||
|
||||
void deleteSceneModelByGuids(List<String> guids);
|
||||
|
||||
Long selectProductByGuid(String guid);
|
||||
|
||||
Long selectSceneModelByGuid(String guid);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user