ArticlePraise.cs 584 B

123456789101112131415161718
  1. namespace ZR.Model.Content
  2. {
  3. [SugarTable("article_praise", "内容点赞记录")]
  4. [Tenant("0")]
  5. public class ArticlePraise
  6. {
  7. [SugarColumn(IsPrimaryKey = true)]
  8. public long PId { get; set; }
  9. public long UserId { get; set; }
  10. public long ArticleId { get; set; }
  11. public string UserIP { get; set; }
  12. public long ToUserId { get; set; }
  13. public int IsDelete { get; set; }
  14. [SugarColumn(InsertServerTime = true)]
  15. public DateTime AddTime { get; set; }
  16. public string Location { get; set; }
  17. }
  18. }