18 lines
420 B
C#
18 lines
420 B
C#
using JNPF.VisualDev;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using SqlSugar;
|
|
using Tnb.WarehouseMgr.Entities;
|
|
|
|
namespace Tnb.WarehouseMgr
|
|
{
|
|
[OverideVisualDev(ModuleConsts.MODULE_WMSPRETASK_ID)]
|
|
public class WmsPretaskService : TaskManagerDelBase<WmsPretaskH>
|
|
{
|
|
public WmsPretaskService(ISqlSugarRepository<WmsPretaskH> repository) : base(repository.AsSugarClient())
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|