1
zhangchengsong
20 小时以前 c0c44414a3e7c9627d09c7be8db60f843469120e
项目代码/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/Dt_PlatformStationService.cs
@@ -17,5 +17,16 @@
        public Dt_PlatformStationService(IDt_PlatformStationRepository BaseDal) : base(BaseDal)
        {
        }
        public List<Dt_PlatformStation> getStatiomList(string ChildPosiDeviceCode)
        {
            return BaseDal.QueryData(x=>x.ChildPosiDeviceCode== ChildPosiDeviceCode).ToList();
        }
        public Dt_PlatformStation getStatiomInfo(string SourceAddress)
        {
            return BaseDal.QueryData(x => x.Station_code == SourceAddress).FirstOrDefault();
        }
    }
}