KxsSysMsg.cs 790 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class KxsSysMsg
  6. {
  7. public int Id { get; set; }
  8. public string Content { get; set; }
  9. public string Url { get; set; }
  10. public DateTime? PushTime { get; set; }
  11. public int PushType { get; set; }
  12. public string BgPic { get; set; }
  13. public DateTime? EndTime { get; set; }
  14. public DateTime? StartTime { get; set; }
  15. public int MsgType { get; set; }
  16. public string Summary { get; set; }
  17. public string Title { get; set; }
  18. public int Version { get; set; }
  19. public int DelFlag { get; set; }
  20. public DateTime? UpdateTime { get; set; }
  21. public DateTime? CreateTime { get; set; }
  22. }
  23. }