| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.daoPr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.pojoPr.PrNetworkCoordinates; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.voPr.VoNetworkCoordinates; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2024-08-27 17:23 | 
|---|
|  |  |  | * @LastEditTime 2024-08-27 17:23 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public interface PrNetworkCoordinatesMapper { | 
|---|
|  |  |  | int deleteByPrimaryKey(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int insert(PrNetworkCoordinates record); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int insertSelective(PrNetworkCoordinates record); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | PrNetworkCoordinates selectByPrimaryKey(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int updateByPrimaryKeySelective(PrNetworkCoordinates record); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int updateByPrimaryKey(PrNetworkCoordinates record); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 清除全部管网坐标 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | void clearCoordinates(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 根据管网ID获取管网坐标列表 | 
|---|
|  |  |  | * @param networkId | 
|---|
|  |  |  | * @return | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<VoNetworkCoordinates> getCoordinatesByNetworkId(Long networkId); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|