using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 活动表 /// [Table("rm_activity")] public class ActivityEntity : BaseEntity { /// /// 活动类型Id /// public long ActivityId { get; set; } /// /// 活动图标 /// public string Icon { get; set; } /// /// 文字描述 /// public string TextDesc { get; set; } /// /// 跳转页面 /// public string PageUrl { get; set; } /// /// 图片描述 /// public string PicDesc { get; set; } /// /// 图片URL /// public string PicUrl { get; set; } /// /// 点击图片跳转页面路径 /// public string PicPageUrl { get; set; } /// /// 活动详情图 /// public string DetailPicUrl { get; set; } /// /// 开始时间 /// public DateTime StartTime { get; set; } /// /// 结束时间 /// public DateTime EndTime { get; set; } /// /// 状态0未开始/1进行中/2已结束 /// public int Status { get; set; } /// /// 排序 /// public int Sort { get; set; } } }