huanghongfeng
2025-09-26 83f3c63f1cae6224320a8d19251e3bc0404da096
代码管理/WCS/WCS/WIDESEAWCS_Server/WIDESEAWCS_SystemServices/AgvStationService.cs
@@ -92,7 +92,7 @@
        /// <returns></returns>
        public AGVStation GetZicheDeep(int HCJAddres)
        {
            return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres || x.Station_Area == 2) && x.Station_enable == 1);
            return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres && x.Station_Area == 2) && x.Station_enable == 1);
        }
        /// <summary>
@@ -100,9 +100,9 @@
        /// </summary>
        /// <param name="HCJAddres">HCJ绔欏彴缂栧彿</param>
        /// <returns></returns>
        public AGVStation GetZicheDeep(int HCJAddres)
        public AGVStation GetZicheOuterSide(int HCJAddres)
        {
            return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres || x.Station_Area == 2) && x.Station_enable == 1);
            return BaseDal.QueryFirst(x => (x.HCJStorageaddress == HCJAddres && x.Station_Area == 1) && x.Station_enable == 1);
        }
    }
}