jinpengyong
2021-09-26 c7d5088dbd18cbbcb98d12aeac35e7d38cdf93be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
 
}