NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceFixTaskQueryM...

19 lines
504 B
C#
Raw 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>
/// AlipayCommerceFixTaskQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceFixTaskQueryModel : AopObject
{
/// <summary>
/// 工单唯一id。 获取途径创建工单的返回结果id或者通知消息中的工单id进行查询。
/// </summary>
[XmlElement("task_id")]
public long TaskId { get; set; }
}
}