12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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;
- }
- }
|