using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInstserviceOrderCreateModel Data Structure. /// [Serializable] public class AlipayEbppInstserviceOrderCreateModel : AopObject { /// /// 手机号,户号,卡号等 /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 权益,活动,会员 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// json标准格式 /// [XmlElement("extend")] public string Extend { get; set; } /// /// 流水号 /// [XmlElement("flow_id")] public string FlowId { get; set; } /// /// 流水创建时间 /// [XmlElement("flow_time")] public string FlowTime { get; set; } /// /// 机构 /// [XmlElement("inst")] public string Inst { get; set; } /// /// 操作动作 /// [XmlElement("operation")] public string Operation { get; set; } /// /// 商户名称 /// [XmlElement("partner_name")] public string PartnerName { get; set; } /// /// 产品id /// [XmlElement("product_id")] public string ProductId { get; set; } /// /// 合作方子业务 /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }