NewGaoKaoApi/PaymentSDK/AliPay/Domain/TreeData.cs

37 lines
966 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;
namespace Aop.Api.Domain
{
/// <summary>
/// TreeData Data Structure.
/// </summary>
[Serializable]
public class TreeData : AopObject
{
/// <summary>
/// 是否合种。true是合种false不是合种
/// </summary>
[XmlElement("cooperation")]
public bool Cooperation { get; set; }
/// <summary>
/// 当前分类下已种植树数量合种胡杨1棵个人种植胡杨1棵
/// </summary>
[XmlElement("num")]
public long Num { get; set; }
/// <summary>
/// 树种别名
/// </summary>
[XmlElement("tree_alias")]
public string TreeAlias { get; set; }
/// <summary>
/// 树种类型保护地【RESERVE】还是树苗【TREE】
/// </summary>
[XmlElement("tree_type")]
public string TreeType { get; set; }
}
}