初始刷
This commit is contained in:
18
ZR.Model/Content/ArticlePraise.cs
Normal file
18
ZR.Model/Content/ArticlePraise.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace ZR.Model.Content
|
||||
{
|
||||
[SugarTable("article_praise", "内容点赞记录")]
|
||||
[Tenant("0")]
|
||||
public class ArticlePraise
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public long PId { get; set; }
|
||||
public long UserId { get; set; }
|
||||
public long ArticleId { get; set; }
|
||||
public string UserIP { get; set; }
|
||||
public long ToUserId { get; set; }
|
||||
public int IsDelete { get; set; }
|
||||
[SugarColumn(InsertServerTime = true)]
|
||||
public DateTime AddTime { get; set; }
|
||||
public string Location { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user