namespace ZR.LiveForum.Model.Liveforum { /// /// 协议内容 /// [SugarTable("T_Agreements")] [Tenant("liveforum")] public class T_Agreements { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 协议标题 /// public string Title { get; set; } /// /// 协议正文内容 /// public string Content { get; set; } /// /// 协议类型 /// public int AgreementType { get; set; } /// /// 协议版本号 /// public string Version { get; set; } /// /// 是否为当前有效版本 /// public bool IsActive { get; set; } /// /// 协议生效日期 /// public DateTime? EffectiveDate { get; set; } /// /// 协议创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 协议更新时间 /// public DateTime? UpdatedAt { get; set; } } }