|  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.service.IService; | 
|---|
|  |  |  | import org.springframework.transaction.annotation.Transactional; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | @Transactional | 
|---|
|  |  |  | void update(GovMonitorPoint govMonitorPoint); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | void updateList(Integer id,String guid); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | *@Description: 删除政府站点 | 
|---|
|  |  |  | *@Param: [id] | 
|---|
|  |  |  | 
|---|
|  |  |  | **/ | 
|---|
|  |  |  | GovMonitorPoint selectGovMonitorPointInfoById(int id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //获取区域下政府站点列表 | 
|---|
|  |  |  | List<Map<String, Object>> selectGovMonitorPoints(String regionCode); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | *@Description: 通过组织id获取国控站点列表 | 
|---|
|  |  |  | *@Param: [map] | 
|---|
|  |  |  | *@return: java.util.List<java.util.Map<java.lang.String,java.lang.Object>> | 
|---|
|  |  |  | *@Author: lizijie | 
|---|
|  |  |  | *@Date: 2021/9/23 15:32 | 
|---|
|  |  |  | **/ | 
|---|
|  |  |  | List<GovMonitorPoint> selectGovMonitorPointsByOrgid(Map map); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|