From 34ad8ad8e238d54d9695da9e8d101579c42516bb Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期六, 18 四月 2026 22:40:02 +0800
Subject: [PATCH] fix(RobotJob): 修正机器人任务处理逻辑和注释错误
---
Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Mes/Dt_MESDeviceConfig.cs | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Mes/Dt_MESDeviceConfig.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Mes/Dt_MESDeviceConfig.cs
new file mode 100644
index 0000000..4dbeb5b
--- /dev/null
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Mes/Dt_MESDeviceConfig.cs
@@ -0,0 +1,49 @@
+using SqlSugar;
+using System;
+using WIDESEA_Core.DB.Models;
+
+namespace WIDESEA_Model.Models
+{
+ /// <summary>
+ /// MES璁惧閰嶇疆瀹炰綋
+ /// </summary>
+ [SugarTable(nameof(Dt_MESDeviceConfig))]
+ public class Dt_MESDeviceConfig : BaseEntity
+ {
+ /// <summary>
+ /// 涓婚敭ID锛岃嚜澧�
+ /// </summary>
+ [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭ID")]
+ public int Id { get; set; }
+
+ /// <summary>
+ /// 璁惧鍚嶇О锛屽"娉ㄦ恫缁勭洏鏈烘鎵�"
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = false, ColumnDescription = "璁惧鍚嶇О")]
+ public string DeviceName { get; set; }
+
+ /// <summary>
+ /// MES璁惧缂栫爜锛屽"A02-YZHJJS-001"
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = false, ColumnDescription = "MES璁惧缂栫爜")]
+ public string EquipmentCode { get; set; }
+
+ /// <summary>
+ /// MES璧勬簮缂栫爜锛屽"ZY25091001"
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = false, ColumnDescription = "MES璧勬簮缂栫爜")]
+ public string ResourceCode { get; set; }
+
+ /// <summary>
+ /// MES API JWT浠ょ墝
+ /// </summary>
+ [SugarColumn(Length = 500, IsNullable = false, ColumnDescription = "MES API JWT浠ょ墝")]
+ public string Token { get; set; }
+
+ /// <summary>
+ /// 浠撳簱缂栫爜锛岀敤浜庨渶瑕佸尯鍒嗕粨搴撶殑鏈烘鎵嬶紙鍙负绌猴級
+ /// </summary>
+ [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "浠撳簱缂栫爜")]
+ public string WarehouseCode { get; set; }
+ }
+}
--
Gitblit v1.9.3