NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaMerchantOrderRentQuery...

25 lines
714 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaMerchantOrderRentQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantOrderRentQueryModel : AopObject
{
/// <summary>
/// 外部订单号需要唯一由商户传入芝麻内部会做幂等控制格式为yyyyMMddHHmmss+随机数
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 信用借还的产品码:w1010100000000002858
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
}
}