From dc10956ddceaac9b217f9e786ff7c1eae7dd832e Mon Sep 17 00:00:00 2001 From: "nodyang@aliyun.com" Date: Mon, 18 Nov 2024 15:03:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=94=9F=E4=BA=A7=E8=AE=A1?= =?UTF-8?q?=E5=88=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DB/Entity/FromPlan.cs | 7 +++++++ DB/Entity/FromPlanMapper.cs | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 DB/Entity/FromPlan.cs create mode 100644 DB/Entity/FromPlanMapper.cs diff --git a/DB/Entity/FromPlan.cs b/DB/Entity/FromPlan.cs new file mode 100644 index 0000000..db38e31 --- /dev/null +++ b/DB/Entity/FromPlan.cs @@ -0,0 +1,7 @@ +namespace DB.Entity +{ + public class FromPlan + { + + } +} \ No newline at end of file diff --git a/DB/Entity/FromPlanMapper.cs b/DB/Entity/FromPlanMapper.cs new file mode 100644 index 0000000..b3dd45b --- /dev/null +++ b/DB/Entity/FromPlanMapper.cs @@ -0,0 +1,10 @@ +namespace DB.Entity +{ + public class FromPlanMapper : SystemEntityTypeBuilder + { + public FromPlanMapper() : base("FromPlan") + { + + } + } +} \ No newline at end of file