|  |  | 
 |  |  |  | 
 |  |  | import com.moral.api.entity.GovMonitorPoint; | 
 |  |  | import com.baomidou.mybatisplus.extension.service.IService; | 
 |  |  | import org.springframework.transaction.annotation.Transactional; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  | import java.util.Map; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  | 
 |  |  |       *@Author: lizijie | 
 |  |  |       *@Date: 2021/9/9 15:09 | 
 |  |  |      **/ | 
 |  |  |     @Transactional | 
 |  |  |     void insert(GovMonitorPoint govMonitorPoint); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |       *@Description: 更新政府站点 | 
 |  |  |       *@Param: [govMonitorPoint] | 
 |  |  |       *@return: void  | 
 |  |  |       *@Author: lizijie | 
 |  |  |       *@Date: 2021/9/10 10:10 | 
 |  |  |      **/ | 
 |  |  |     @Transactional | 
 |  |  |     void update(GovMonitorPoint govMonitorPoint); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |       *@Description: 删除政府站点 | 
 |  |  |       *@Param: [id] | 
 |  |  |       *@return: void | 
 |  |  |       *@Author: lizijie | 
 |  |  |       *@Date: 2021/9/10 13:11 | 
 |  |  |      **/ | 
 |  |  |     @Transactional | 
 |  |  |     void delete(Integer id); | 
 |  |  |      | 
 |  |  |     /** | 
 |  |  |       *@Description: 通过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); | 
 |  |  |  | 
 |  |  | } |