using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MiniAppServiceInfo Data Structure. /// [Serializable] public class MiniAppServiceInfo : AopObject { /// /// 插件发布状态码,暂存100,风控审核200,运营审核300,等待上架400,已预发上架500,已上架501,已下架600,已驳回700 /// [XmlElement("biz_status")] public string BizStatus { get; set; } /// /// 是否是内部标,true/false /// [XmlElement("is_inner")] public bool IsInner { get; set; } /// /// 是否订购,true/false /// [XmlElement("is_order")] public bool IsOrder { get; set; } /// /// 三方应用appid /// [XmlElement("isv_app_id")] public string IsvAppId { get; set; } /// /// 应用id /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 测试插件 /// [XmlElement("mini_app_name")] public string MiniAppName { get; set; } /// /// 卖家pid /// [XmlElement("seller_id")] public string SellerId { get; set; } /// /// 卖家名 /// [XmlElement("seller_name")] public string SellerName { get; set; } /// /// 商品CODE /// [XmlElement("service_code")] public string ServiceCode { get; set; } /// /// 服务图标 /// [XmlElement("service_logo")] public string ServiceLogo { get; set; } /// /// 服务名 /// [XmlElement("service_name")] public string ServiceName { get; set; } /// /// 服务简介 /// [XmlElement("service_slogan")] public string ServiceSlogan { get; set; } /// /// 是否在服务市场透出,SHOW展示、HIDE隐藏 /// [XmlElement("show_type")] public string ShowType { get; set; } } }