using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RatioDetail Data Structure. /// [Serializable] public class RatioDetail : AopObject { /// /// 区域编码 /// [XmlElement("area_code")] public string AreaCode { get; set; } /// /// 区域名称 /// [XmlElement("area_name")] public string AreaName { get; set; } /// /// 主键 /// [XmlElement("id")] public string Id { get; set; } /// /// 年月 /// [XmlElement("period")] public string Period { get; set; } /// /// 占比的标签名称 /// [XmlElement("ratio_label")] public string RatioLabel { get; set; } /// /// 占比数值,为百分比的小数数值 /// [XmlElement("ratio_val")] public string RatioVal { get; set; } } }