ExportSystemUpdateLog.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using AutoMapper;
  2. using DllEapEntity.Enums;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Text;
  7. namespace DllEapEntity.Dtos
  8. {
  9. [AutoMap(typeof(SystemUpdateLog))]
  10. public class ExportSystemUpdateLog
  11. {
  12. [Description("环境 0 正式 1 测试")]
  13. public EnumEapEnvironment Environment { get; set; }
  14. [Description("版本号")]
  15. public string Version { get; set; }
  16. [Description("更新内容")]
  17. public string Detail { get; set; }
  18. [Description("更新时间")]
  19. public DateTime FDate { get; set; }
  20. [Description("备注")]
  21. public string Remark { get; set; }
  22. [Description("新增人")]
  23. public string RecName { get; set; }
  24. [Description("新增时间")]
  25. public DateTime RecTime { get; set; }
  26. [Description("修改人")]
  27. public string ModName { get; set; }
  28. [Description("修改时间")]
  29. public DateTime ModTime { get; set; }
  30. }
  31. }