| package com.moral.api.service; | 
|   | 
| import com.moral.api.entity.GovMonitorPoint; | 
| import com.baomidou.mybatisplus.extension.service.IService; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * <p> | 
|  *  服务类 | 
|  * </p> | 
|  * | 
|  * @author moral | 
|  * @since 2021-09-10 | 
|  */ | 
| public interface GovMonitorPointService extends IService<GovMonitorPoint> { | 
|   | 
|     /** | 
|       *@Description: 通过省市区县编码查询政府站点 | 
|       *@Param: [code] | 
|       *@return: java.util.List<com.moral.api.entity.GovMonitorPoint>  | 
|       *@Author: lizijie | 
|       *@Date: 2021/10/12 14:42 | 
|      **/ | 
|     List<GovMonitorPoint> getGovMonitorPointByRegionCode(int code); | 
|   | 
| } |