using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// banner /// [Table("rm_banner")] public class BannerEntity : BaseEntity { /// /// 图片描述 /// public string Name { get; set; } /// /// 图片URL /// public string PicUrl { get; set; } /// /// 是否主图:0.非主图1.主图 /// public bool IsMaster { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 状态 0-起开始/1-进行中/2-已结束 /// public int Status { get; set; } /// /// 类型 /// public int Type { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 跳转页面 /// public string PageUrl { get; set; } /// /// 文字描述 /// public string TextDesc { get; set; } /// /// 开始时间 /// public DateTime StartTime { get; set; } /// /// 结束时间 /// public DateTime EndTime { get; set; } } }