From f4f475fd3c0e066ad82cdc61707f0e8e19583a02 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期四, 25 七月 2024 14:51:43 +0800 Subject: [PATCH] 进入工序时要增加判断过站是否按流程设置,增加非法过站防呆 增加生产不良记录用于记录发现的不良的管理 工序节点跟节点设置增加是否允许不良品进站的字段 --- Tiger.Business/BizContext.cs | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Tiger.Business/BizContext.cs b/Tiger.Business/BizContext.cs index f864228..d4fdd5a 100644 --- a/Tiger.Business/BizContext.cs +++ b/Tiger.Business/BizContext.cs @@ -92,5 +92,10 @@ { return BizContext.Container.Resolve<T>(); } + + public static dynamic Resolve(string typeFullName) + { + return BizContext.Container.Resolve(System.Type.GetType(typeFullName, true)); + } } } \ No newline at end of file -- Gitblit v1.9.3