2026-06-01 17:59:23 +08:00
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///固定模板言论表
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("TemplateSentence")]
|
2026-06-02 14:10:43 +08:00
|
|
|
public partial class TemplateSentence : SqlSugarBaseEntity
|
2026-06-01 17:59:23 +08:00
|
|
|
{
|
|
|
|
|
public TemplateSentence(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2026-06-02 14:10:43 +08:00
|
|
|
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:模板内容
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Sentence {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:是否启用
|
|
|
|
|
/// Default:b'1'
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsActive {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:分类: Positive, Neutral, Negative
|
|
|
|
|
/// Default:Neutral
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Type {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:状态: Active, Inactive
|
|
|
|
|
/// Default:Active
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Status {get;set;}
|
|
|
|
|
}
|
|
|
|
|
}
|