using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PlantPlace Data Structure. /// [Serializable] public class PlantPlace : AopObject { /// /// 林区面积,单位:亩 /// [XmlElement("acreage")] public string Acreage { get; set; } /// /// 树已经种下时所在的林区id /// [XmlElement("forest_id")] public string ForestId { get; set; } /// /// 林区名称 /// [XmlElement("forest_name")] public string ForestName { get; set; } /// /// 林区经纬度 /// [XmlElement("location")] public string Location { get; set; } /// /// 公益机构名称 /// [XmlElement("ngo_name")] public string NgoName { get; set; } /// /// 种植年份 /// [XmlElement("plant_time")] public string PlantTime { get; set; } /// /// 种植所在区域 /// [XmlElement("region")] public string Region { get; set; } /// /// 林区树木数量 /// [XmlElement("tree_count")] public long TreeCount { get; set; } } }