NewGaoKaoApi/PaymentSDK/AliPay/Domain/ScheduleListItem.cs

31 lines
753 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>
/// ScheduleListItem Data Structure.
/// </summary>
[Serializable]
public class ScheduleListItem : AopObject
{
/// <summary>
/// 任务id
/// </summary>
[XmlElement("plan_id")]
public string PlanId { get; set; }
/// <summary>
/// 任务状态枚举。 0准备 1运行中 2已完成 3 失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 任务类型。枚举,参考任务类型
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}