This commit is contained in:
alex
2023-08-02 10:24:20 +08:00
10 changed files with 189 additions and 21 deletions

View File

@@ -3,10 +3,21 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.Common.Core.Manager;
using JNPF.Common.Enums;
using JNPF.Common.Extension;
using JNPF.FriendlyException;
using JNPF.Systems.Interfaces.System;
using Microsoft.AspNetCore.Mvc;
using NPOI.OpenXmlFormats;
using Senparc.NeuChar.ApiHandlers;
using SqlSugar;
using Tnb.WarehouseMgr.Entities;
using Tnb.WarehouseMgr.Entities.Dto;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
using Tnb.WarehouseMgr.Entities.Dto.Outputs;
using Tnb.WarehouseMgr.Entities.Entity;
using Tnb.WarehouseMgr.Interfaces;
namespace Tnb.WarehouseMgr
{
@@ -16,6 +27,15 @@ namespace Tnb.WarehouseMgr
public class DeviceProviderService : BaseWareHouseService
{
private readonly ISqlSugarClient _db;
private readonly IWareHouseService _wareHouseService;
public DeviceProviderService(ISqlSugarRepository<WmsInstockH> repository, IWareHouseService wareHouseService)
{
_db = repository.AsSugarClient();
_wareHouseService = wareHouseService;
}
/// <summary>
/// 任务链状态上报
/// </summary>
@@ -25,6 +45,6 @@ namespace Tnb.WarehouseMgr
{
return await Task.FromResult<Result>(null);
}
}
}
}