NewGaoKaoApi/PaymentSDK/AliPay/Domain/AddPlanGroupResult.cs

27 lines
653 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AddPlanGroupResult Data Structure.
/// </summary>
[Serializable]
public class AddPlanGroupResult : AopObject
{
/// <summary>
/// 新增计划下单元后返回的单元ID列表
/// </summary>
[XmlArray("group_id_list")]
[XmlArrayItem("number")]
public List<long> GroupIdList { get; set; }
/// <summary>
/// 新增计划后计划ID
/// </summary>
[XmlElement("plan_id")]
public long PlanId { get; set; }
}
}