¶Ô±ÈÐÂÎļþ |
| | |
| | | using 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; } |
| | | } |
| | | } |