using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenOperationBizfeeAftechCreateandpayModel Data Structure. /// [Serializable] public class AlipayOpenOperationBizfeeAftechCreateandpayModel : AopObject { /// /// 系统/应用名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 订单币种 币种数字编码。 /// [XmlElement("currency")] public string Currency { get; set; } /// /// 客户信息(JSON对象) 包含principalType主体类型、principalId主体Id、extInfo扩展信息等字段。其中,需要从extInfo透传消费的key有:relEntityId关联主体Id。 /// [XmlElement("customer")] public string Customer { get; set; } /// /// 业务发生时间 /// [XmlElement("gmt_service")] public string GmtService { get; set; } /// /// 机构OU编码 /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 订单金额 单位元,最多两位小数。 /// [XmlElement("order_amount")] public string OrderAmount { get; set; } /// /// 订单流水号 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 外部业务流水号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } /// /// 扩展属性(Map的JSON对象) key和value中不能有英文逗号及等于符号。 /// [XmlElement("properties")] public string Properties { get; set; } /// /// 可退金额 可退金额=本次订单金额+前序订单转移金额。 单位元,最多两位小数。 /// [XmlElement("refundable_amount")] public string RefundableAmount { get; set; } /// /// 租户Id /// [XmlElement("tnt_inst_id")] public string TntInstId { get; set; } } }