添加项目文件。
This commit is contained in:
55
TelegramService.Entity/Entity/tieba.cs
Normal file
55
TelegramService.Entity/Entity/tieba.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
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;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user