using System; using System.Xml.Linq; using static JiaZhiQuan.Common.CreatorSpace; namespace JiaZhiQuan.Common.Models.PO { /// /// 创作中心-活动专区-活动分类表 /// n_activity_card /// public class CreatorActivityCardPO { /// /// id /// public int id { get; set; } /// /// 卡片id /// public int spaceId { get; set; } /// /// 版本id /// public int versionId { get; set; } /// /// code /// public string code { get; set; } /// /// 活动标题 /// public string title { get; set; } /// /// 活动内容 /// public string content { get; set; } /// /// 关键字 /// public string keyword { get; set; } /// /// Banner /// public string banner { get; set; } /// /// 是否允许关闭 /// public int allowClose { get; set; } /// /// 链接类型 /// public int? linkType { get; set; } /// /// 链接Sub类型 /// public int? linkSubType { get; set; } /// /// 链接地址 /// public string linkUrl { get; set; } /// /// 对谁可见 /// public int visual { get; set; } /// /// 创建时间 /// public DateTime createAt { get; set; } } }