123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Customer
- {
-
-
-
- [SugarTable("Crm_TableOperationRecord")]
- public class Crm_TableOperationRecord : EntityBase
- {
-
-
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string? TableName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int PortType { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public OperationEnum OperationItem { get; set; } = OperationEnum.NoOperation;
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DataId { get; set; } = 0;
-
-
-
- public string? Status { get; set; }
-
-
-
- public string? RemoteIp { get; set; }
-
-
-
- public string? Location { get; set; }
-
-
-
- public string DeviceType { get; set; }
-
-
-
- public string? Browser { get; set; }
-
-
-
- public string? Os { get; set; }
-
-
-
- public long? Elapsed { get; set; }
-
-
-
- public string? RequestUrl { get; set; }
-
-
-
- public string? RequestParam { get; set; }
-
-
-
- public string? ReturnResult { get; set; }
-
-
-
- public string UpdatePreData { get; set; }
-
-
-
- public string UpdateBefData { get; set; }
- }
- }
|