using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AirWheel.Cycling.Entity { /// /// 推荐列表的Banner展示 /// public class ResponseSubjectList : BaseResponseModel { /// /// 广告列表 /// public List adList { get; set; } /// /// 展会列表 /// public List subjectList { get; set; } } /// /// 展会实体 /// public class SubjectBanner { /// /// 主键 /// public int id { get; set; } /// /// 标题 /// public string title { get; set; } /// /// 图片URL /// public string imageUrl { get; set; } /// /// 4代表展会 /// public int themeType { get; set; } /// /// 详情URL /// public string url { get; set; } } public class AdBanner { /// /// 主键 /// public int id { get; set; } /// /// 标题 /// public string title { get; set; } /// /// 图片URL /// public string imageUrl { get; set; } /// /// 1代表列表,2代表详情,3复合 /// public int themeType { get; set; } /// /// 详情URL /// public string url { get; set; } } }