using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OfferObject Data Structure. /// [Serializable] public class OfferObject : AopObject { /// /// 服务编码 /// [XmlElement("app_code")] public string AppCode { get; set; } /// /// 分类编码 /// [XmlElement("category_code")] public string CategoryCode { get; set; } /// /// 城市编码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 展台ID,这个是唯一主键,这个最重要,作为我方的source_offer_id存在表里,而且是唯一的 /// [XmlElement("displayapp_id")] public string DisplayappId { get; set; } /// /// 展台操作备注 /// [XmlElement("displayapp_memo")] public string DisplayappMemo { get; set; } /// /// 展台名称 /// [XmlElement("displayapp_name")] public string DisplayappName { get; set; } /// /// 状态 /// [XmlElement("displayapp_status")] public string DisplayappStatus { get; set; } /// /// URL /// [XmlElement("displayapp_url")] public string DisplayappUrl { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 图片地址 /// [XmlElement("logo_url")] public string LogoUrl { get; set; } /// /// 实际的URL /// [XmlElement("service_url")] public string ServiceUrl { get; set; } } }