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