using System; namespace GDZZ.Application { /// /// 活动广告列表输出参数 /// public class MiniBannerOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 广告图片 /// public string Url { get; set; } /// /// 跳转链接 /// public string Skip { get; set; } } }