From cba2c0ff983f40757aa9840a3bd520c28a9896d9 Mon Sep 17 00:00:00 2001
From: yanjinhui <3306209981@qq.com>
Date: 星期三, 15 四月 2026 17:37:10 +0800
Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/RuiShengZhiNeng/GaoPuLiTiKu

---
 代码管理/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_InterfaceLog.cs |   83 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 83 insertions(+), 0 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_InterfaceLog.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_InterfaceLog.cs"
new file mode 100644
index 0000000..176cd09
--- /dev/null
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/Dt_InterfaceLog.cs"
@@ -0,0 +1,83 @@
+锘縰sing SqlSugar;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEAWCS_Core.DB.Models;
+
+namespace WIDESEAWCS_Model.Models
+{
+    [SugarTable(nameof(Dt_InterfaceLog), "鎺ュ彛鏃ュ織")]
+    public class Dt_InterfaceLog : BaseEntity
+    {
+        /// <summary>
+        /// 涓婚敭
+        /// </summary>
+        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+        public int Id { get; set; }
+
+        /// <summary>
+        /// 鎺ュ彛缂栧彿
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "鎺ュ彛缂栧彿")]
+        public string ApiCode { get; set; }
+
+        /// <summary>
+        /// 鎺ュ彛鍚嶇О
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "鎺ュ彛鍚嶇О")]
+        public string ApiName { get; set; }
+
+        /// <summary>
+        /// 鎺ュ彛鍦板潃
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "鎺ュ彛鍦板潃")]
+        public string ApiAddress { get; set; }
+
+        /// <summary>
+        /// 鎺ㄩ�佹鏁�
+        /// </summary>
+        [SugarColumn(IsNullable = false, ColumnDescription = "鎺ㄩ�佹鏁�")]
+        public int PushFrequency { get; set; } = 0;
+
+        /// <summary>
+        /// 鎺ㄩ�佺姸鎬�
+        /// 0鏈帹閫�
+        /// 1鎺ㄩ�佹垚鍔�
+        /// 2鎺ㄩ�佸け璐�
+        /// </summary>
+        [SugarColumn(IsNullable = false, ColumnDescription = "鎺ㄩ�佺姸鎬�")]
+        public int PushState { get; set; } = 0;
+
+        /// <summary>
+        /// 璇锋眰鏂�
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "璇锋眰鏂�")]
+        public string Requestor { get; set; }
+
+        /// <summary>
+        /// 璇锋眰鍐呭
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = int.MaxValue, ColumnDescription = "璇锋眰鍐呭")]
+        public string RequestParameters { get; set; }
+
+        /// <summary>
+        /// 鎺ユ敹鏂�
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "鎺ユ敹鏂�")]
+        public string Recipient { get; set; }
+
+        /// <summary>
+        /// 鍝嶅簲鍐呭
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = int.MaxValue, ColumnDescription = "鍝嶅簲鍐呭")]
+        public string ResponseParameters { get; set; }
+
+        /// <summary>
+        /// 澶囨敞
+        /// </summary>
+        [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "澶囨敞")]
+        public string Remark { get; set; }
+    }
+}

--
Gitblit v1.9.3