From 0efa4677569ccfb9a437ca9dfeb3e146309c7dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E5=8F=AB=E9=94=84=E5=A4=B4?= Date: Sat, 6 Apr 2024 15:40:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E4=BD=93=E7=B1=BB=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProductionSystem_Model/DbModel/Exv.cs | 103 ++++++++++++++++ ProductionSystem_Model/DbModel/Stone.cs | 111 ++++++++++++++++++ ProductionSystem_Model/DbModel/Ux.cs | 102 ++++++++++++++++ ProductionSystem_Model/DbModel/Uy.cs | 87 ++++++++++++++ .../ProductionSystem_Model.csproj | 4 + 5 files changed, 407 insertions(+) create mode 100644 ProductionSystem_Model/DbModel/Exv.cs create mode 100644 ProductionSystem_Model/DbModel/Stone.cs create mode 100644 ProductionSystem_Model/DbModel/Ux.cs create mode 100644 ProductionSystem_Model/DbModel/Uy.cs diff --git a/ProductionSystem_Model/DbModel/Exv.cs b/ProductionSystem_Model/DbModel/Exv.cs new file mode 100644 index 0000000..ea592ca --- /dev/null +++ b/ProductionSystem_Model/DbModel/Exv.cs @@ -0,0 +1,103 @@ +using SqlSugar; + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProductionSystem_Model.DbModel +{ + public partial class Exv + { + + [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] + /// + /// 主键;主键 + /// + public string Id { get; set; } + + /// + /// 创建时间 + /// + [SugarColumn(ColumnName = "createdtime")] + + public DateTime? Createdtime { get; set; } + + + /// + /// 设计开度请求 + /// + [SugarColumn(ColumnName = "positionrequest")] + public string Positionrequest { get; set; } + + /// + /// 使能请求 + /// + [SugarColumn(ColumnName = "enablerequest")] + public string Enablerequest { get; set; } + /// + /// 初始化请求 + /// + + [SugarColumn(ColumnName = "initrequest")] + public string Initrequest { get; set; } + + /// + /// 响应错误 + /// + [SugarColumn(ColumnName = "responseerror")] + public string Responseerror { get; set; } + + /// + /// 当前初始化状态 + /// + [SugarColumn(ColumnName = "currentinitstate")] + public string Currentinitstate { get; set; } + + /// + /// 当前运行状态 + /// + [SugarColumn(ColumnName = "runstate")] + public string Runstate { get; set; } + + /// + /// 故障状态 + /// + [SugarColumn(ColumnName = "faultstate")] + public string Faultstate { get; set; } + + /// + /// 电压状态 + /// + [SugarColumn(ColumnName = "voltagestate")] + public string Voltagestate { get; set; } + + /// + /// 温度警报 + /// + [SugarColumn(ColumnName = "temperaturewarn")] + public string Temperaturewarn { get; set; } + + /// + /// 当前位置 + /// + [SugarColumn(ColumnName = "currentposition")] + public string Currentposition { get; set; } + + + /// + /// 请求Id + /// + [SugarColumn(ColumnName = "reqid")] + public string Reqid { get; set; } + + /// + /// 备注 + /// + [SugarColumn(ColumnName = "remark")] + public string Remark { get; set; } + + + } +} diff --git a/ProductionSystem_Model/DbModel/Stone.cs b/ProductionSystem_Model/DbModel/Stone.cs new file mode 100644 index 0000000..08ff72e --- /dev/null +++ b/ProductionSystem_Model/DbModel/Stone.cs @@ -0,0 +1,111 @@ +using SqlSugar; + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProductionSystem_Model +{ + public partial class Stone + { + /// + /// 主键 + /// + [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] + public string Id { get; set; } + + /// + /// 插入时间 + /// + [SugarColumn(ColumnName = "createdtime")] + public DateTime? Createdtime { get; set; } + + /// + /// 请求模式 + /// + [SugarColumn(ColumnName = "moderequest")] + public string Moderequest { get; set; } + + /// + /// 请求 + /// + [SugarColumn(ColumnName = "initialreq")] + public string Initialreq { get; set; } + + /// + /// 请求ID + /// + [SugarColumn(ColumnName = "reqid")] + public string Reqid { get; set; } + + /// + /// 反馈模式 + /// + [SugarColumn(ColumnName = "actualmode")] + public string Actualmode { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "hldtrqactive")] + public string Hldtrqactive { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "moveactive")] + public string Moveactive { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "initialactive")] + public string Initialactive { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "initialrequired")] + public string Initialrequired { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "undervoltage")] + public string Undervoltage { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "overvoltage")] + public string Overvoltage { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "overtemperror")] + public string Overtemperror { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "responseerror")] + public string Responseerror { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "blockageerror")] + public string Blockageerror { get; set; } + + /// + /// 更新人 + /// + [SugarColumn(ColumnName = "overcurrenterror")] + public string Overcurrenterror { get; set; } + + + } +} diff --git a/ProductionSystem_Model/DbModel/Ux.cs b/ProductionSystem_Model/DbModel/Ux.cs new file mode 100644 index 0000000..dca7543 --- /dev/null +++ b/ProductionSystem_Model/DbModel/Ux.cs @@ -0,0 +1,102 @@ +using SqlSugar; + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProductionSystem_Model.DbModel +{ + public class Ux + { + + /// + /// 主键 + /// + [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] + public string Id { get; set; } + + /// + /// 插入时间 + /// + [SugarColumn(ColumnName = "createdtime")] + public DateTime? Createdtime { get; set; } + + + + /// + /// 设置速度 + /// + [SugarColumn(ColumnName = "spdset")] + public string Spdset { get; set; } + + /// + /// 错误 + /// + [SugarColumn(ColumnName = "error")] + public string Error { get; set; } + + /// + /// PumpMotorSta + /// + [SugarColumn(ColumnName = "pumpmotorsta")] + public string Pumpmotorsta { get; set; } + + /// + /// PumpDryRunningsta + /// + [SugarColumn(ColumnName = "pumpdryrunningsta")] + public string Pumpdryrunningsta { get; set; } + + /// + /// PumpPCState + /// + [SugarColumn(ColumnName = "pumppcstate")] + public string Pumppcstate { get; set; } + + /// + /// PumpTempSta + /// + [SugarColumn(ColumnName = "pumptempsta")] + public string Pumptempsta { get; set; } + + /// + /// PumpinputVolt + /// + [SugarColumn(ColumnName = "pumpinputvolt")] + public string Pumpinputvolt { get; set; } + + /// + /// RealRPM + /// + [SugarColumn(ColumnName = "realrpm")] + public string Realrpm { get; set; } + + /// + /// Temp + /// + [SugarColumn(ColumnName = "temp")] + public string Temp { get; set; } + + /// + /// Cur + /// + [SugarColumn(ColumnName = "cur")] + public string Cur { get; set; } + + /// + /// Version + /// + [SugarColumn(ColumnName = "version")] + public string Version { get; set; } + + /// + /// + /// + [SugarColumn(ColumnName = "ReqID")] + public string Reqid { get; set; } + + + } +} diff --git a/ProductionSystem_Model/DbModel/Uy.cs b/ProductionSystem_Model/DbModel/Uy.cs new file mode 100644 index 0000000..fa5aa44 --- /dev/null +++ b/ProductionSystem_Model/DbModel/Uy.cs @@ -0,0 +1,87 @@ +using SqlSugar; + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProductionSystem_Model +{ + public partial class Uy + { + + /// + /// 主键 + /// + [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] + public string Id { get; set; } + + /// + /// 插入时间 + /// + [SugarColumn(ColumnName = "createdtime")] + public DateTime? Createdtime { get; set; } + /// + /// 速度 + /// + [SugarColumn(ColumnName = "spdset")] + public string Spdset { get; set; } + + /// + /// 水泵启动 + /// + [SugarColumn(ColumnName = "dryrunningsta")] + public string Dryrunningsta { get; set; } + + /// + /// 电压值 + /// + [SugarColumn(ColumnName = "volt")] + public string Volt { get; set; } + + /// + /// 模式启动 + /// + [SugarColumn(ColumnName = "motorsta")] + public string Motorsta { get; set; } + + /// + /// 电源启动 + /// + [SugarColumn(ColumnName = "powersta")] + public string Powersta { get; set; } + + /// + /// 温度启动 + /// + [SugarColumn(ColumnName = "tempsta")] + public string Tempsta { get; set; } + + /// + /// 异常 + /// + [SugarColumn(ColumnName = "error")] + public string Error { get; set; } + + /// + /// 实际转速 + /// + [SugarColumn(ColumnName = "realrpm")] + public string Realrpm { get; set; } + + /// + /// 备注 + /// + [SugarColumn(ColumnName = "remark")] + public string Remark { get; set; } + + /// + /// 请求Id + /// + [SugarColumn(ColumnName = "reqid")] + public string Reqid { get; set; } + + + } +} diff --git a/ProductionSystem_Model/ProductionSystem_Model.csproj b/ProductionSystem_Model/ProductionSystem_Model.csproj index 206989e..7a4f5fd 100644 --- a/ProductionSystem_Model/ProductionSystem_Model.csproj +++ b/ProductionSystem_Model/ProductionSystem_Model.csproj @@ -97,6 +97,7 @@ + @@ -113,6 +114,7 @@ + @@ -122,6 +124,8 @@ + +