using Microsoft.Extensions.Hosting; using System; namespace JiaZhiQuan.Common.Models.PO { /// /// n_activity_region_content /// public class CreatorActivityRegionContentPO { /// /// id /// public int id { get; set; } /// /// 版本id /// public int versionId { get; set; } /// /// code /// public string code { get; set; } /// /// 分类Code,关联n_activity_region_type表的code /// public string typeCode { get; set; } /// /// 标题 /// public string title { get; set; } /// /// 副文案 /// public string content { get; set; } /// /// banner /// public string banner { get; set; } /// /// 热度 /// public int hot { get; set; } /// /// 排序 /// public float displayOrder { get; set; } /// /// 标签 /// public string label { get; set; } /// /// 是否启用按钮 /// public bool btnEnabled { get; set; } /// /// 按钮名称 /// public string btnName { get; set; } /// /// 按钮跳转类型 /// public int? btnLinkType { get; set; } /// /// 按钮跳转子类型 /// public int? btnLinkSubType { get; set; } /// /// 按钮跳转链接 /// public string btnLink { get; set; } /// /// 内容是否开启跳转 /// public bool contentEnabled { get; set; } /// /// 内容跳转类型 /// public int? contentLinkType { get; set; } /// /// 内容跳转子类型 /// public int? contentLinkSubType { get; set; } /// /// 内容跳转路径 /// public string contentLink { get; set; } /// /// 是否启用 /// public int enabled { get; set; } /// /// 创建时间 /// public DateTime createAt { get; set; } } }