Admin
2025-11-25 18828b299d8208cfba1e70b08ba86b4e9c5b91f5
代码管理/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>
@@ -151,5 +151,13 @@
        {
            return BaseDal.QueryData(x => x.Station_tasktype == (int)RGVTasktype.Outbound && (x.Station_material == (int)RGVEquipment.Mothertrailer || x.Station_material == (int)RGVEquipment.Corridorcar || x.Station_material == (int)RGVEquipment.OutRGVForklift) && x.Station_enable == 1);
        }
        /// <summary>
        /// 鑾峰彇鍑哄簱杩欒竟鐨勫瓙杞︼紝姣嶈溅
        /// </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.InRGVForklift) && x.Station_enable == 1);
        }
    }
}