From fcd49db2ee33ee2e1d33e5a41e53d9897a8a3b0f Mon Sep 17 00:00:00 2001
From: yanjinhui <3306209981@qq.com>
Date: 星期四, 05 六月 2025 19:19:10 +0800
Subject: [PATCH] 限制plc伸到位报警,和限制开始作业无限点击问题
---
project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_MaintenanceTeam.cs | 32 +++++++++++++++++++++++++++++---
1 files changed, 29 insertions(+), 3 deletions(-)
diff --git a/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_MaintenanceTeam.cs b/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_MaintenanceTeam.cs
index cbd8486..e68ad29 100644
--- a/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_MaintenanceTeam.cs
+++ b/project/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_MaintenanceTeam.cs
@@ -8,7 +8,7 @@
namespace WIDESEAWCS_Model.Models
{
- [SugarTable("Dt_MaintenanceTeam", "妫�淇彮缁勮〃")] //('鏁版嵁搴撹〃鍚�'锛�'鏁版嵁搴撹〃澶囨敞')
+ [SugarTable("Dt_MaintenanceTeam", "妫�淇彮缁勮褰曡〃")] //('鏁版嵁搴撹〃鍚�'锛�'鏁版嵁搴撹〃澶囨敞')
public class Dt_MaintenanceTeam : BaseEntity
{
/// <summary>
@@ -16,6 +16,12 @@
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
+
+ /// <summary>
+ /// 璐﹀彿
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "璐﹀彿")]
+ public string Account { get; set; }
/// <summary>
/// 鎿嶄綔浜哄憳濮撳悕
@@ -31,14 +37,34 @@
[SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "鐝粍鍚�")]
public string TeamName { get; set; }
+ /// <summary>
+ /// ip鍦板潃
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "ip鍦板潃")]
+ public string IPAddress { get; set; }
+
+
+ /// <summary>
+ /// 妫�淇姸鎬�
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "妫�淇姸鎬�")]
+ public int MaintenanceStatus { get; set; }
+
/// <summary>
/// 鍒嗛厤鏃堕棿
/// </summary>
[SugarColumn(IsNullable = true, ColumnDescription = "鍒嗛厤鏃堕棿")]
- public DateTime DistributionTime { get; set; }
+ public DateTime? DistributionTime { get; set; }
-
+
+ /// <summary>
+ /// 瀹屾垚妫�淇椂闂�
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "瀹屾垚妫�淇椂闂�")]
+ public DateTime? EndTime { get; set; }
+
+
--
Gitblit v1.9.3