using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayFundBizorderCreateModel Data Structure. /// [Serializable] public class AlipayFundBizorderCreateModel : AopObject { /// /// 转账请求的扩展参数,具体请与支付宝工程师联系 /// [XmlElement("business_params")] public string BusinessParams { get; set; } /// /// 订单总金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000] /// [XmlElement("order_amount")] public string OrderAmount { get; set; } /// /// 业务订单标题,用于在支付宝用户的账单里显示 /// [XmlElement("order_title")] public string OrderTitle { get; set; } /// /// 商户端的唯一订单号,对于同一笔转账请求,商户需保证该订单号唯一。 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 业务订单所属商户ID /// [XmlElement("partner_user_id")] public string PartnerUserId { get; set; } /// /// 收款方信息 /// [XmlElement("payee_info")] public Participant PayeeInfo { get; set; } } }