NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaMerchantOrderConfirmMo...

25 lines
1.3 KiB
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>
/// ZhimaMerchantOrderConfirmModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantOrderConfirmModel : AopObject
{
/// <summary>
/// 芝麻信用订单号,此订单号是在业务办理中的信用套餐页面点提交后生成的单号此单号通过页面url或者后台通知到商户的业务系统商户用此单号可以查询用户授权过的信用评估的相关信息后完成接下来的业务流程
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// transaction_id是代表一笔请求的唯一标志该标识作为对账的关键信息对于用户使用相同transaction_id的查询芝麻在一天86400秒内返回首次查询数据超过有效期的查询即为无效并返回异常有效期内的反复查询不重新计费。 transaction_id 推荐生成方式是30位其中17位时间值精确到毫秒yyyyMMddHHmmssSSS加上13位自增数字1234567890123
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
}
}