using System; using System.ComponentModel.DataAnnotations; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// Banner入参 /// public class BannerInput { /// /// 图片描述 /// public string Name { get; set; } /// /// 图片URL /// public string PicUrl { get; set; } /// /// 类型0未关联,1电话,2链接 /// [Required] public int Type { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 跳转页面 /// public string PageUrl { get; set; } /// /// 开始时间 /// [Required] public DateTime StartTime { get; set; } /// /// 结束时间 /// [Required] public DateTime EndTime { get; set; } /// /// 是否主图:0.非主图1.主图 /// // public bool IsMaster { get; set; } /// /// 排序 /// // public int Sort { get; set; } /// /// 状态 0-起开始/1-进行中/2-已结束 /// // public int Status { get; set; } /// /// 文字描述 /// // public string TextDesc { get; set; } } }