using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// ZhimaMerchantOrderRentQueryResponse. /// public class ZhimaMerchantOrderRentQueryResponse : AopResponse { /// /// 是否准入: Y:准入 N:不准入 /// [XmlElement("admit_state")] public string AdmitState { get; set; } /// /// 资金流水号 /// [XmlElement("alipay_fund_order_no")] public string AlipayFundOrderNo { get; set; } /// /// 借用时间 /// [XmlElement("borrow_time")] public string BorrowTime { get; set; } /// /// 物品名称,最长不能超过14个汉字 /// [XmlElement("goods_name")] public string GoodsName { get; set; } /// /// 芝麻信用借还订单号 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 支付金额 /// [XmlElement("pay_amount")] public string PayAmount { get; set; } /// /// 支付金额类型 RENT:租金 DAMAGE:赔偿金 /// [XmlElement("pay_amount_type")] public string PayAmountType { get; set; } /// /// 支付状态 PAY_INIT:待支付 PAY_SUCCESS:支付成功 PAY_FAILED:支付失败 PAY_INPROGRESS:支付中 /// [XmlElement("pay_status")] public string PayStatus { get; set; } /// /// 支付时间 /// [XmlElement("pay_time")] public string PayTime { get; set; } /// /// 归还时间 /// [XmlElement("restore_time")] public string RestoreTime { get; set; } /// /// 订单状态: borrow:借出 restore:归还 cancel:撤销 /// [XmlElement("use_state")] public string UseState { get; set; } /// /// 支付宝userId /// [XmlElement("user_id")] public string UserId { get; set; } } }