From 6790c9e560f34623474e49dceef032fa44a15fd3 Mon Sep 17 00:00:00 2001 From: "nodyang@aliyun.com" Date: Thu, 24 Oct 2024 14:32:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=AD=A6=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DB/Entity/PointLog.cs | 16 ++++++++++++++++ DB/Service/PointLogService.cs | 7 +++++++ 2 files changed, 23 insertions(+) create mode 100644 DB/Entity/PointLog.cs create mode 100644 DB/Service/PointLogService.cs diff --git a/DB/Entity/PointLog.cs b/DB/Entity/PointLog.cs new file mode 100644 index 0000000..f7d09bf --- /dev/null +++ b/DB/Entity/PointLog.cs @@ -0,0 +1,16 @@ +namespace DB.Entity +{ + public class PointLog : BaseChimsDb + { + /// + /// plc 点位名称 + /// + public string PointName { get; set; } + /// + /// plc 点位地址 + /// + public string PointAddress { get; set; } + + public string Msg { get; set; } + } +} \ No newline at end of file diff --git a/DB/Service/PointLogService.cs b/DB/Service/PointLogService.cs new file mode 100644 index 0000000..a818aba --- /dev/null +++ b/DB/Service/PointLogService.cs @@ -0,0 +1,7 @@ +namespace DB.Service +{ + public class PointLogService + { + + } +} \ No newline at end of file