1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using OASystem.Domain.Dtos.System;
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.CRM
- {
- public class TableOperationRecordDto
- {
- }
-
-
-
-
- public class TableOperationRecordAddDto
- {
-
-
-
- public int UserId { get; set; }
-
-
-
-
- public string? TableName { get; set; }
-
-
-
-
- public int PortType { get; set; }
-
-
-
-
- public OperationEnum OperationItem { get; set; } = OperationEnum.NoOperation;
-
-
-
- public int DataId { get; set; } = 0;
- }
- public class TableOperationRecordPageDto
- {
- public int PageIndex { get; set; } = 1;
- public int PageSize { get; set; } = 10;
-
-
-
-
- public string TableName { get; set; }
- }
- }
|