using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOverseasTravelContentCreateModel Data Structure. /// [Serializable] public class AlipayOverseasTravelContentCreateModel : AopObject { /// /// 内容作者 /// [XmlElement("author")] public string Author { get; set; } /// /// 内容分类code /// [XmlElement("category_code")] public string CategoryCode { get; set; } /// /// 内容分类名称 /// [XmlElement("category_name")] public string CategoryName { get; set; } /// /// 内容详情,不包含页面样式 /// [XmlElement("content")] public string Content { get; set; } /// /// 内容id /// [XmlElement("content_id")] public string ContentId { get; set; } /// /// 内容封面 /// [XmlElement("cover")] public string Cover { get; set; } /// /// 内容详情H5链接 /// [XmlElement("detail_url")] public string DetailUrl { get; set; } /// /// 图片链接列表,单个image大小不超过4096,image个数不超过50 /// [XmlArray("image_list")] [XmlArrayItem("string")] public List ImageList { get; set; } /// /// 内容修改时间,请确保本次修改的时间大于上一次修改的时间 /// [XmlElement("modified_date")] public long ModifiedDate { get; set; } /// /// poi列表,单个poi名称大小不超过512,poi个数不超过50个 /// [XmlArray("poi_list")] [XmlArrayItem("content_poi_data")] public List PoiList { get; set; } /// /// 内容发布时间 /// [XmlElement("publish_date")] public long PublishDate { get; set; } /// /// 标签列表,单个tag大小不超过128,tag个数不超过1000 /// [XmlArray("tag_list")] [XmlArrayItem("string")] public List TagList { get; set; } /// /// 内容标题 /// [XmlElement("title")] public string Title { get; set; } } }