25 lines
598 B
C#
25 lines
598 B
C#
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();
|
|
}
|
|
}
|
|
}
|