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.
47 lines
1.1 KiB
47 lines
1.1 KiB
namespace Tiobon.Core.Model.Models;
|
|
|
|
public class Guestbook : RootEntityTkey<long>
|
|
{
|
|
|
|
/// <summary>博客ID
|
|
///
|
|
/// </summary>
|
|
public long? TiobonId { get; set; }
|
|
/// <summary>创建时间
|
|
///
|
|
/// </summary>
|
|
public DateTime createdate { get; set; }
|
|
|
|
[SugarColumn(Length = 2000, IsNullable = true)]
|
|
public string username { get; set; }
|
|
|
|
/// <summary>手机
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(Length = 2000, IsNullable = true)]
|
|
public string phone { get; set; }
|
|
/// <summary>qq
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(Length = 2000, IsNullable = true)]
|
|
public string QQ { get; set; }
|
|
|
|
/// <summary>留言内容
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(Length = 2000, IsNullable = true)]
|
|
public string body { get; set; }
|
|
/// <summary>ip地址
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(Length = 2000, IsNullable = true)]
|
|
public string ip { get; set; }
|
|
|
|
/// <summary>是否显示在前台,0否1是
|
|
///
|
|
/// </summary>
|
|
public bool isshow { get; set; }
|
|
|
|
[SugarColumn(IsIgnore = true)]
|
|
public TiobonArticle Tiobonarticle { get; set; }
|
|
}
|
|
|