From 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922 Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期三, 09 七月 2025 22:55:27 +0800 Subject: [PATCH] 增加质检出入库逻辑 --- 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/System/Sys_Log.cs | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 101 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..e651b41 --- /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,101 @@ +锘縰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 +{ + /// <summary> + /// 鎺ュ彛鏃ュ織 + /// </summary> + [SugarTable(nameof(Sys_Log), "鎺ュ彛鏃ュ織")] + 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, Length = 50, ColumnDescription = "鏂规硶鍚嶇О")] + public string MethodName { get; set; } + + /// <summary> + /// 鏂规硶鎻忚堪 + /// </summary> + [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "鏂规硶鎻忚堪")] + public string Methodremark { get; set; } + + /// <summary> + /// 鐢ㄦ埛涓婚敭 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鐢ㄦ埛涓婚敭")] + public int? User_Id { get; set; } + } +} -- Gitblit v1.9.3