2026-06-01 17:59:23 +08:00
|
|
|
using SqlSugar;
|
2026-06-08 16:57:44 +08:00
|
|
|
using QYZH.InteractiveMagazine.Models.Enum;
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///固定模板言论表
|
|
|
|
|
///</summary>
|
2026-07-08 10:37:03 +08:00
|
|
|
[SugarTable("Community_TemplateSentence")]
|
2026-06-05 15:52:11 +08:00
|
|
|
public partial class CommunityTemplateSentence : SqlSugarBaseEntity
|
2026-06-01 17:59:23 +08:00
|
|
|
{
|
2026-06-05 15:52:11 +08:00
|
|
|
public CommunityTemplateSentence(){
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
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>
|
2026-06-08 16:57:44 +08:00
|
|
|
public CommunityTemplateSentenceTypeEnum Type {get;set;}
|
2026-06-01 17:59:23 +08:00
|
|
|
}
|
|
|
|
|
}
|