MissiveAnalyze.cs 757 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Datory.Annotations;
  5. namespace GxPress.Entity.Missive
  6. {
  7. /// <summary>
  8. /// 站内信分析包含了 收藏 点赞 转发
  9. /// </summary>
  10. [DataTable("tede_missive_analyze")]
  11. public class MissiveAnalyze : Datory.Entity
  12. {
  13. /// <summary>
  14. ///站内信ID
  15. /// </summary>
  16. [DataColumn]
  17. public int MissiveId { get; set; }
  18. /// <summary>
  19. /// 用户ID
  20. /// </summary>
  21. [DataColumn]
  22. public int UserId { get; set; }
  23. /// <summary>
  24. /// 类型ID (1 点赞,2评论点赞,3收藏,4转发)
  25. /// </summary>
  26. [DataColumn]
  27. public int AnalyzeType { get; set; }
  28. }
  29. }