using Yw.Untity; namespace PBS.Vmo { public class PlaceBuildParasInfoVmo : JsonModel { /// /// 物业类型 /// public ePropertyType PropertyType { get; set; } /// /// 竣工时间 /// public string CompletionTime { get; set; } /// /// 产权年限 /// public int ProperTyYears { get; set; } /// /// 总户数 /// public int TotalHouseHolds { get; set; } /// /// 容积率 /// public double? PlotRatio { get; set; } /// /// 绿化率 /// public double? GreeningRate { get; set; } /// /// /// 开发商 /// public string Developer { get; set; } /// /// 总建面积 /// public double? AreaSquare { get; set; } } }