56 lines
1.2 KiB
C#
56 lines
1.2 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace TelegramService.Entity
|
|
{
|
|
///<summary>
|
|
///贴吧
|
|
///</summary>
|
|
[SugarTable("tieba")]
|
|
public partial class tieba
|
|
{
|
|
public tieba(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:那个贴吧
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string key {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:url的id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string url {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string title {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:CURRENT_TIMESTAMP
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public DateTime sysaddtime {get;set;}
|
|
|
|
}
|
|
}
|