|
|
@@ -1,12 +1,13 @@
|
|
|
-using Abp.Application.Services;
|
|
|
-using Abp.Dependency;
|
|
|
-using Business.Core.Utilities;
|
|
|
+using Business.Core.Utilities;
|
|
|
using Business.Dto;
|
|
|
-using Business.Model.WMS;
|
|
|
+using Business.StructuredDB.WMS;
|
|
|
using Newtonsoft.Json;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Threading.Tasks;
|
|
|
+using Volo.Abp.Application.Services;
|
|
|
+using Volo.Abp.DependencyInjection;
|
|
|
+using Volo.Abp.Domain.Repositories;
|
|
|
using Volo.Abp.MultiTenancy;
|
|
|
using Volo.Abp.Uow;
|
|
|
using IUnitOfWorkManager = Volo.Abp.Uow.IUnitOfWorkManager;
|
|
|
@@ -20,11 +21,11 @@ namespace Business.DOP
|
|
|
/// <summary>
|
|
|
/// 平台规格型号对照表
|
|
|
/// </summary>
|
|
|
- private readonly Volo.Abp.Domain.Repositories.IRepository<PlatformSpecificationComparison, long> _PlatformSpecificationComparison;
|
|
|
+ private readonly IRepository<PlatformSpecificationComparison, long> _PlatformSpecificationComparison;
|
|
|
/// <summary>
|
|
|
/// 平台库存表
|
|
|
/// </summary>
|
|
|
- private readonly Volo.Abp.Domain.Repositories.IRepository<PlatformInventory, long> _PlatformInventory;
|
|
|
+ private readonly IRepository<PlatformInventory, long> _PlatformInventory;
|
|
|
/// <summary>
|
|
|
/// 雪花算法
|
|
|
/// </summary>
|
|
|
@@ -39,8 +40,8 @@ namespace Business.DOP
|
|
|
/// 构造函数
|
|
|
/// </summary>
|
|
|
public SyncDOPAppService(
|
|
|
- Volo.Abp.Domain.Repositories.IRepository<PlatformSpecificationComparison, long> PlatformSpecificationComparison,
|
|
|
- Volo.Abp.Domain.Repositories.IRepository<PlatformInventory, long> PlatformInventory,
|
|
|
+ IRepository<PlatformSpecificationComparison, long> PlatformSpecificationComparison,
|
|
|
+ IRepository<PlatformInventory, long> PlatformInventory,
|
|
|
IUnitOfWorkManager unitOfWorkManager,
|
|
|
ICurrentTenant currentTenant
|
|
|
)
|