- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class KxsDtsErrorLog
- {
- public long Id { get; set; }
- public string ErrorStr { 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; }
- }
- }
|