You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/Models/BlogArticleComment.cs

19 lines
383 B

using SqlSugar;
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 博客文章 评论
/// </summary>
public class TiobonArticleComment : RootEntityTkey<long>
{
public long bID { get; set; }
public string Comment { get; set; }
public string UserId { get; set; }
[Navigate(NavigateType.OneToOne, nameof(UserId))]
public SysUserInfo User { get; set; }
}