using Hotline.Share.Enums.Snapshot;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XF.Domain.Repository;
namespace Hotline.Snapshot;
public class SnapshotSMSTemplate : FullStateEntity
{
///
/// 行业Id
///
[SugarColumn(ColumnDescription = "行业Id")]
public string IndustryId { get; set; }
///
/// 模板内容
///
[SugarColumn(ColumnDescription = "模板内容")]
public string Content { get; set; }
///
/// 审核状态
///
[SugarColumn(ColumnDescription = "审核状态")]
public ESnapshotSMSStatus Status { get; set; }
///
/// 是否启用
///
[SugarColumn(ColumnDescription = "是否启用")]
public bool IsEnable { get; set; }
///
/// 是否公用
///
[SugarColumn(ColumnDescription = "是否公用")]
public bool IsPublic { get; set; }
///
/// 排序
///
[SugarColumn(ColumnDescription = "排序")]
public int DisplayOrder { get; set; }
}