| New file |
| | |
| | | package com.moral.api.service; |
| | | |
| | | import com.moral.api.entity.GovMonitorPoint; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务类 |
| | | * </p> |
| | | * |
| | | * @author moral |
| | | * @since 2021-09-09 |
| | | */ |
| | | public interface GovMonitorPointService extends IService<GovMonitorPoint> { |
| | | |
| | | /** |
| | | *@Description: 根据条件查询政府站点信息 |
| | | *@Param: [map] |
| | | *@return: java.util.Map<java.lang.String,java.lang.Object> |
| | | *@Author: lizijie |
| | | *@Date: 2021/9/9 11:28 |
| | | **/ |
| | | Map<String,Object> getDataByCondition(Map map); |
| | | |
| | | /** |
| | | *@Description: 新增政府站点 |
| | | *@Param: [govMonitorPoint] |
| | | *@return: void |
| | | *@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获取政府站点信息 |
| | | *@Param: [id] |
| | | *@return: com.moral.api.entity.GovMonitorPoint |
| | | *@Author: lizijie |
| | | *@Date: 2021/9/9 16:35 |
| | | **/ |
| | | GovMonitorPoint selectGovMonitorPointInfoById(int id); |
| | | |
| | | } |