using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TreeDetailData Data Structure. /// [Serializable] public class TreeDetailData : AopObject { /// /// 证书申请时间 /// [XmlElement("apply_time")] public string ApplyTime { get; set; } /// /// 是否合种。true:是合种,false:不是合种 /// [XmlElement("cooperation")] public bool Cooperation { get; set; } /// /// 树种别名 /// [XmlElement("tree_alias")] public string TreeAlias { get; set; } /// /// 树种类型,保护地【RESERVE】还是树苗【TREE】 /// [XmlElement("tree_type")] public string TreeType { get; set; } } }