新增进出库策略,修改起禁用状态函数

This commit is contained in:
alex
2023-07-06 08:54:50 +08:00
parent 2dc3f4d3e5
commit c54274301c
9 changed files with 273 additions and 2 deletions

View File

@@ -1,11 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Aspose.Cells.Drawing;
using JNPF;
using JNPF.Common.Contracts;
using JNPF.Common.Extension;
using JNPF.DependencyInjection;
using JNPF.DynamicApiController;
@@ -13,6 +15,7 @@ using JNPF.VisualDev;
using Microsoft.AspNetCore.Mvc;
using Tnb.WarehouseMgr.Entities.Attributes;
using Tnb.WarehouseMgr.Entities.Dto;
using Tnb.WarehouseMgr.Entities.Entity;
using Tnb.WarehouseMgr.Interfaces;
namespace Tnb.WarehouseMgr
@@ -49,5 +52,6 @@ namespace Tnb.WarehouseMgr
{
return Task.CompletedTask;
}
}
}