From 793ad4cae27e3ba337b4365d34d6747fa9e48899 Mon Sep 17 00:00:00 2001 From: marvinhong Date: Thu, 7 Oct 2021 22:23:44 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=9B=B4=E6=96=B0AMESContext.cs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AMESCoreStudio.WebApi/Models/AMESContext.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/AMESCoreStudio.WebApi/Models/AMESContext.cs b/AMESCoreStudio.WebApi/Models/AMESContext.cs index f79473b3..172990ad 100644 --- a/AMESCoreStudio.WebApi/Models/AMESContext.cs +++ b/AMESCoreStudio.WebApi/Models/AMESContext.cs @@ -6,6 +6,7 @@ using Microsoft.EntityFrameworkCore; using AMESCoreStudio.WebApi; using AMESCoreStudio.WebApi.Models.SYS; using AMESCoreStudio.WebApi.Models.AMES; +using AMESCoreStudio.WebApi.Models.BAS; namespace AMESCoreStudio.WebApi { @@ -176,6 +177,19 @@ namespace AMESCoreStudio.WebApi public DbSet WipInfos { get; set; } + /// + /// 流程資料 + /// + public DbSet FlowRules { get; set; } + /// + /// 流程站別資料 + /// + public DbSet RuleStations { get; set; } + + /// + /// 流程規則資料 + /// + public DbSet Ruleses { get; set; } } }