heshaofeng
6 天以前 e1a14bf3c7a6bd297f4e2da87831170593cb5e9c
项目代码/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();
        }
    }
}