1、agv 信息获取新增swagger备注
2、新增盘点签收相关功能接口
This commit is contained in:
24
WarehouseMgr/Tnb.WarehouseMgr/WmsPDATakeStockService.cs
Normal file
24
WarehouseMgr/Tnb.WarehouseMgr/WmsPDATakeStockService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using JNPF.VisualDev;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities;
|
||||
|
||||
namespace Tnb.WarehouseMgr
|
||||
{
|
||||
/// <summary>
|
||||
/// Pda盘点
|
||||
/// </summary>
|
||||
[OverideVisualDev(ModuleConsts.MODLUE_WMSTASKSTOCK_ID)]
|
||||
public class WmsPDATakeStockService : BaseWareHouseService
|
||||
{
|
||||
private readonly ISqlSugarClient _db;
|
||||
public WmsPDATakeStockService(ISqlSugarRepository<WmsCheckstockH> repo)
|
||||
{
|
||||
_db = repo.AsSugarClient();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user