| package com.moral.api.service; | 
|   | 
| import com.moral.api.entity.MonitorPoint; | 
| import com.baomidou.mybatisplus.extension.service.IService; | 
| import org.springframework.transaction.annotation.Transactional; | 
|   | 
| import java.util.List; | 
| import java.util.Map; | 
|   | 
| /** | 
|  * <p> | 
|  *  服务类 | 
|  * </p> | 
|  * | 
|  * @author moral | 
|  * @since 2021-05-12 | 
|  */ | 
| @Transactional | 
| public interface MonitorPointService extends IService<MonitorPoint> { | 
|   | 
|     @Transactional | 
|     Map<String,Object> insertMonitorPoint(MonitorPoint monitorPoint); | 
|   | 
|     Map<String,Object> getAllMonitorPoint(Map map); | 
|   | 
|     @Transactional | 
|     Map<String,Object> updateMonitorPoint(Map<String,Object> updateMap); | 
|   | 
|     @Transactional | 
|     Map<String,Object> deleteMonitorPoint(Map map); | 
|   | 
|     Map<String,Object> getMonitorPointByFuzzy(Map map); | 
|   | 
|     List<MonitorPoint> getMonitorPointsByOrganizationId(Integer organizationId); | 
|   | 
| } |