- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class KxsDtsLog
- {
- public long Id { get; set; }
- public string TableName { get; set; }
- public string Operation { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public string Content { get; set; }
- public long DataId { get; set; }
- }
- }
|