using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace TelegramService.Entity
{
///
///
///
[SugarTable("liYuanList")]
public partial class liYuanList
{
public liYuanList(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public int tid {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string title {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string type {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string author {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? time {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string url {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string slug {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? addtime {get;set;}
}
}