Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayTradeCloseModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
937 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayTradeCloseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeCloseModel : AopObject
{
/// <summary>
/// 卖家端自定义的的操作员 ID
/// </summary>
[JsonProperty("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 订单支付时传入的商户订单号,和支付宝交易号不能同时为空。 trade_no,out_trade_no如果同时存在优先取trade_no
/// </summary>
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 该交易在支付宝系统中的交易流水号。最短 16 位,最长 64 位。和out_trade_no不能同时为空如果同时传了 out_trade_no和 trade_no则以 trade_no为准。
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}