From 48e865c8ed5902ae34f133a29dfade36d3f018d3 Mon Sep 17 00:00:00 2001
From: dengjunjie <dengjunjie@hnkhzn.com>
Date: 星期四, 24 十月 2024 13:46:24 +0800
Subject: [PATCH] 修改WMS货位信息表,任务表,添加WCS接口
---
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_Log.cs | 86 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 86 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_Log.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_Log.cs"
new file mode 100644
index 0000000..ed75231
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_Log.cs"
@@ -0,0 +1,86 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using SqlSugar;
+using WIDESEA_Core.DB.Models;
+using WIDESEA_Core.Tenants;
+
+namespace WIDESEA_Model.Models
+{
+ [MultiTenant]
+ public class Sys_Log
+ {
+ /// <summary>
+ /// 涓婚敭
+ /// </summary>
+ [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+ public int Id { get; set; }
+
+ /// <summary>
+ /// 寮�濮嬫椂闂�
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "寮�濮嬫椂闂�")]
+ public DateTime? BeginDate { get; set; }
+
+ /// <summary>
+ /// 鏃堕暱
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "鏃堕暱")]
+ public int? ElapsedTime { get; set; }
+
+ /// <summary>
+ /// 缁撴潫鏃堕棿
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "缁撴潫鏃堕棿")]
+ public DateTime EndDate { get; set; }
+
+ /// <summary>
+ /// 鏃ュ織绫诲瀷
+ /// </summary>
+ //[SugarColumn(IsNullable = true, ColumnDescription = "鏃ュ織绫诲瀷")]
+ //public DateTime LogType { get; set; }
+
+ /// <summary>
+ /// 璇锋眰鍙傛暟
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "璇锋眰鍙傛暟")]
+ public string RequestParam { get; set; }
+
+ /// <summary>
+ /// 鍝嶅簲鍙傛暟
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "鍝嶅簲鍙傛暟")]
+ public string ResponseParam { get; set; }
+
+ /// <summary>
+ /// 鍝嶅簲鐘舵��
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "鍝嶅簲鐘舵��")]
+ public int? Success { get; set; }
+
+ /// <summary>
+ /// 璇锋眰鍦板潃
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "璇锋眰鍦板潃")]
+ public string Url { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛IP
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "鐢ㄦ埛IP")]
+ public string UserIP { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛鍚嶇О
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "鐢ㄦ埛鍚嶇О")]
+ public string UserName { get; set; }
+
+ /// <summary>
+ /// 鐢ㄦ埛涓婚敭
+ /// </summary>
+ [SugarColumn(IsNullable = true, ColumnDescription = "鐢ㄦ埛涓婚敭")]
+ public int? User_Id { get; set; }
+ }
+}
--
Gitblit v1.9.3