wms基础数据基类改为基础配置基类,同时增加不同业务的启用、禁用功能
This commit is contained in:
23
WarehouseMgr/Tnb.WarehouseMgr/WmsCheckSignConfigService.cs
Normal file
23
WarehouseMgr/Tnb.WarehouseMgr/WmsCheckSignConfigService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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>
|
||||
/// 盘点签收配置
|
||||
/// </summary>
|
||||
[OverideVisualDev(ModuleConsts.MODULE_WMSCHECKSIGNCONFIG_ID)]
|
||||
public class WmsCheckSignConfigService : WmsBasicConfBase<WmsCheckSignConfig>
|
||||
{
|
||||
public WmsCheckSignConfigService(ISqlSugarRepository<WmsCheckSignConfig> repo)
|
||||
{
|
||||
DbContext = repo.AsSugarClient();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user