KxsDtsLog.cs 447 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class KxsDtsLog
  6. {
  7. public long Id { get; set; }
  8. public string TableName { get; set; }
  9. public string Operation { get; set; }
  10. public DateTime? UpdateTime { get; set; }
  11. public DateTime? CreateTime { get; set; }
  12. public string Content { get; set; }
  13. public long DataId { get; set; }
  14. }
  15. }