From 56148da6e3548a72d3d69faf5dac07251461962d Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期三, 25 六月 2025 08:56:11 +0800
Subject: [PATCH] 修复响应状态类型一致性问题在 CommonConveyorLineJob.cs、CommonConveyorLine_GWJob.cs 和 RequestInbound.cs文件中,将响应状态的值从 1 修改为Convert.ToInt16(1),以确保类型一致性。增加了日志记录和状态更新的代码,以增强任务处理的可追踪性和准确性,提升了代码的可读性

---
 Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs |   31 +++++++++++++++++++++++--------
 1 files changed, 23 insertions(+), 8 deletions(-)

diff --git a/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs
index 7e70e6f..970c257 100644
--- a/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs
+++ b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs
@@ -1,4 +1,5 @@
-锘縰sing SqlSugar;
+锘縰sing Magicodes.ExporterAndImporter.Core;
+using SqlSugar;
 using System;
 using System.Collections.Generic;
 using System.ComponentModel.DataAnnotations;
@@ -13,43 +14,57 @@
     public class dt_needBarcode : BaseEntity
     {
         [Key]
-        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        [ImporterHeader(IsIgnore = true)]
+        [ExporterHeader(DisplayName = "涓婚敭")]
+        [SugarColumn(IsIdentity = true, IsNullable = true, IsPrimaryKey = true, ColumnDescription = "涓婚敭")]
         public int id { get; set; }
 
         /// <summary>
         /// 鐩爣搴撳尯
         /// </summary>
-        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "鐩爣搴撳尯")]
+        [ImporterHeader(Name = "鐩爣搴撳尯")]
+        [ExporterHeader(DisplayName = "鐩爣搴撳尯")]
+        [SugarColumn(IsNullable = true, ColumnDescription = "鐩爣搴撳尯")]
         public string toArea { get; set; }
 
         /// <summary>
         /// 鏉ユ簮搴撳尯
         /// </summary>
-        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鏉ユ簮搴撳尯")]
+        [ImporterHeader(Name = "鏉ユ簮搴撳尯")]
+        [ExporterHeader(DisplayName = "鏉ユ簮搴撳尯")]
+        [SugarColumn(IsNullable = true, ColumnDescription = "鏉ユ簮搴撳尯")]
         public string fromArea { get; set; }
 
         /// <summary>
         /// 鎵樼洏绫诲瀷
         /// </summary>
-        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鎵樼洏绫诲瀷")]
+        [ImporterHeader(Name = "鎵樼洏绫诲瀷")]
+        [ExporterHeader(DisplayName = "鎵樼洏绫诲瀷")]
+        [SugarColumn(IsNullable = true, ColumnDescription = "鎵樼洏绫诲瀷")]
         public string barcodeType { get; set; }
 
         /// <summary>
         /// 浜х嚎
         /// </summary>
-        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鎵�灞炰骇绾�")]
+        [ImporterHeader(Name = "浜х嚎")]
+        [ExporterHeader(DisplayName = "浜х嚎")]
+        [SugarColumn(IsNullable = true, ColumnDescription = "浜х嚎")]
         public string productLine {  get; set; }
 
         /// <summary>
         /// 鍦ㄩ�旀暟閲�
         /// </summary>
-        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鍦ㄩ�旀暟閲�")]
+        [ImporterHeader(Name = "鍦ㄩ�旀暟閲�")]
+        [ExporterHeader(DisplayName = "鍦ㄩ�旀暟閲�")]
+        [SugarColumn(IsNullable = true, ColumnDescription = "鍦ㄩ�旀暟閲�")]
         public int inLineNum { get; set; }
 
         /// <summary>
         /// 鐩爣缂撳瓨鏁伴噺
         /// </summary>
-        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鍙紦瀛樻暟閲�")]
+        [ImporterHeader(Name = "鍙紦瀛樻暟閲�")]
+        [ExporterHeader(DisplayName = "鍙紦瀛樻暟閲�")]
+        [SugarColumn(IsNullable = true, ColumnDescription = "鍙紦瀛樻暟閲�")]
         public int cacheNum { get; set; } = 0;
 
 

--
Gitblit v1.9.3