1
HuBingJie
2025-12-05 28110912ca4803e5793f181517d7bf2d7a5ea2ad
代码管理/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 == 5 && x.Station_enable == 1);
        }
        /// <summary>
@@ -157,7 +157,7 @@
        /// </summary>
        public List<AGVStation> InGetOutStroller()
        {
            return BaseDal.QueryData(x => x.Station_tasktype == (int)RGVTasktype.Inbound && (x.Station_material == (int)RGVEquipment.Mothertrailer || x.Station_material == (int)RGVEquipment.Corridorcar || x.Station_material == (int)RGVEquipment.OutRGVForklift) && x.Station_enable == 1);
            return BaseDal.QueryData(x => x.Station_tasktype == (int)RGVTasktype.Inbound && (x.Station_material == (int)RGVEquipment.Mothertrailer || x.Station_material == (int)RGVEquipment.Corridorcar || x.Station_material == (int)RGVEquipment.InRGVForklift) && x.Station_enable == 1);
        }
    }
}