using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CommodityPublicExtInfos Data Structure. /// [Serializable] public class CommodityPublicExtInfos : AopObject { /// /// 前置url /// [XmlElement("action_url")] public string ActionUrl { get; set; } /// /// 应用展台id /// [XmlElement("app_id")] public string AppId { get; set; } /// /// 类目 /// [XmlElement("category_name")] public string CategoryName { get; set; } /// /// 城市名称 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 服务插件ID /// [XmlElement("commodity_id")] public string CommodityId { get; set; } /// /// 创建者ID /// [XmlElement("create_user_id")] public string CreateUserId { get; set; } /// /// 挂载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; } /// /// 状态 1:上架;0:下架;2:维护中 /// [XmlElement("displayapp_status")] public string DisplayappStatus { get; set; } /// /// 用户访问地址 /// [XmlElement("displayapp_url")] public string DisplayappUrl { get; set; } /// /// 外部展示地址 /// [XmlElement("export_url")] public string ExportUrl { get; set; } /// /// 属性ID /// [XmlElement("property_id")] public string PropertyId { get; set; } } }