/// <summary> 查询所有网络通讯的分站
        /// </summary>
        /// <param name="pointCode"></param>
        /// <returns></returns>
        public static IList <Jc_DefInfo> QueryStationOfNet()
        {
            var result = _PointDefineService.GetNetworkCommunicationStation();

            if (result.IsSuccess == true)
            {
                return(result.Data);
            }
            else
            {
                throw new Exception(result.Message);
            }
        }
 public BasicResponse <List <Jc_DefInfo> > GetNetworkCommunicationStation()
 {
     return(_PointDefineService.GetNetworkCommunicationStation());
 }