using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayPcreditHuabeiPcreditmerchantProductorderDelayModel Data Structure. /// [Serializable] public class AlipayPcreditHuabeiPcreditmerchantProductorderDelayModel : AopObject { /// /// 非业务数据 /// [XmlElement("extending_info")] public string ExtendingInfo { get; set; } /// /// 请求APP /// [XmlElement("from_app")] public string FromApp { get; set; } /// /// 订购单号 /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 商户ID /// [XmlElement("pid")] public string Pid { get; set; } /// /// 续订系统码,用于标识订购花呗产品的系统 /// [XmlElement("renew_system_code")] public string RenewSystemCode { get; set; } /// /// 续订发生时间 /// [XmlElement("renewing_datetime")] public string RenewingDatetime { get; set; } } }