heshaofeng
2025-11-24 0b0899370f271793f7156144b4b912438aebdf73
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_BasicService/WarehouseService.cs
@@ -116,6 +116,15 @@
            return WebResponseContent.Instance.OK();
        }
        public List<WarehouseDTO> GetWarehouseTypes()
        {
            return _warehouseArearepository.Db.Queryable<Dt_WarehouseArea>().Select(x => new WarehouseDTO
            {
                WarehouseType = x.Code,
                WarehouseTypeDesc = $"{x.Code}-{x.Name}"
            }).ToList();
        }
    }
}