NewGaoKaoApi/PaymentSDK/AliPay/Domain/TreeDetailData.cs

37 lines
928 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>
/// TreeDetailData Data Structure.
/// </summary>
[Serializable]
public class TreeDetailData : AopObject
{
/// <summary>
/// 证书申请时间
/// </summary>
[XmlElement("apply_time")]
public string ApplyTime { get; set; }
/// <summary>
/// 是否合种。true是合种false不是合种
/// </summary>
[XmlElement("cooperation")]
public bool Cooperation { get; set; }
/// <summary>
/// 树种别名
/// </summary>
[XmlElement("tree_alias")]
public string TreeAlias { get; set; }
/// <summary>
/// 树种类型保护地【RESERVE】还是树苗【TREE】
/// </summary>
[XmlElement("tree_type")]
public string TreeType { get; set; }
}
}