refactor(models): 更新Medal实体并新增一批数据库实体类
1. 新增AiBasePrompt、JournalCatalog、JournalPage、DotFileDetail、DotFile、JournalPageTask共6个数据库实体类
This commit is contained in:
97
QYZH.InteractiveMagazine.Models/Entity/DotFileDetail.cs
Normal file
97
QYZH.InteractiveMagazine.Models/Entity/DotFileDetail.cs
Normal file
@ -0,0 +1,97 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SqlSugar;
|
||||
|
||||
namespace QYZH.InteractiveMagazine.Models.Entity
|
||||
{
|
||||
///<summary>
|
||||
///
|
||||
///</summary>
|
||||
[SugarTable("DotFileDetail")]
|
||||
public partial class DotFileDetail : SqlSugarBaseEntity
|
||||
{
|
||||
public DotFileDetail(){
|
||||
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// Desc:主键id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey=true)]
|
||||
public long Id {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:主表id
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public long DotId {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:页名
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string PageName {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:使用名
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string PageUseName {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:是否使用
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public bool IsUse {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:乐观锁
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public int Revision {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:Pending / Processing / Success / Failed / Cancelled
|
||||
/// Default:Pending
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string Status {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:
|
||||
/// Default:b'0'
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public bool IsDeleted {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string CreatedBy {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public DateTime CreatedAt {get;set;}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string UpdatedBy {get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user