MessageWallInfo.cs 781 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace YZXYH.Repository.Models
  3. {
  4. public class MessageWallInfo
  5. {
  6. public int Id { get; set; }
  7. public int? ParentId { get; set; }
  8. public string Path { get; set; }
  9. public int Depth { get; set; }
  10. public int? Gender { get; set; }
  11. public string OpenId { get; set; }
  12. public string NickName { get; set; }
  13. public string Mobile { get; set; }
  14. public string MsgContent { get; set; }
  15. public DateTime MsgDateTime { get; set; }
  16. public int MsgType { get; set; }
  17. public int? IsHead { get; set; }
  18. public int? IsNew { get; set; }
  19. public string Remark { get; set; }
  20. public string Avatar { get; set; }
  21. public string ImagePath { get; set; }
  22. }
  23. }