using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceTransportIndustryProxyUseModel Data Structure. /// [Serializable] public class AlipayCommerceTransportIndustryProxyUseModel : AopObject { /// /// 描述当前行业代理请求的请求事件 /// [XmlElement("industry_event")] public string IndustryEvent { get; set; } /// /// 行业代理请求的业务请求内容,根据行业场景、行业事件的变化而不同 /// [XmlElement("industry_request")] public string IndustryRequest { get; set; } /// /// 描述当前行业代理请求的请求场景 /// [XmlElement("industry_scene")] public string IndustryScene { get; set; } /// /// 支持商户接入此业务的系统服务商id /// [XmlElement("sys_service_provider_id")] public string SysServiceProviderId { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }