From 06e0e3b7d61e95902a6129de2490461cd0693e1d Mon Sep 17 00:00:00 2001
From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com>
Date: 星期三, 15 十月 2025 15:06:40 +0800
Subject: [PATCH] 新增异步方法并优化服务调用逻辑在多个数据库文件中进行了二进制文件的修改、删除和新增操作,可能涉及数据库内容的更新或重建。在 HttpsClient.cs文件中新增了 PostNotLimitAsync方法,用于发送支持 JSON 格式的异步 HTTP POST 请求,并记录请求和响应参数。在 AgingInOrOutInputService.cs文件中,将 HttpsClient.PostAsync替换为PostNotLimitAsync,以利用新方法的功能特性。同时删除了不再需要的注释代码。
---
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