using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ewide.Application { public class HouseInfoOutput { #region 建筑物基本信息building public string BuildingName { get; set; } public int? LandAttribute { get; set; } public int? StructureType { get; set; } public int? SeismicGrade { get; set; } public int? BaseInfo { get; set; } public string InsulationMaterial { get; set; } public string WallMaterial { get; set; } public string FireproofGrade { get; set; } public int? CurtainWall { get; set; } public int? FaceBrick { get; set; } public int? WhiteWash { get; set; } public int? Coating { get; set; } public string Elevator { get; set; } public DateTime? CompletedDate { get; set; } public int? UsefulYear { get; set; } /// /// 总建筑面积 /// public float? TotalArea { get; set; } /// /// 总户数(户) /// public int? HouseHolds { get; set; } /// /// 房屋单元数 /// public int? Units { get; set; } /// /// 各单元每层户数(户) /// public int? UnitFloorHolds { get; set; } /// /// 总层数 /// public int? TotalFloor { get; set; } /// /// 地上层数 /// public int? LandFloorCount { get; set; } /// /// 地上商业层数开始 /// public int? LandBsFloorStart { get; set; } /// /// 地上商业层数结束 /// public int? LandBsFloorEnd { get; set; } /// /// 地上车棚层开始 /// public int? LandBikeFloorStart { get; set; } /// /// 地上住宅层开始 /// public int? LandResidenceFloorStart { get; set; } /// /// 地上住宅层结束 /// public int? LandResidenceFloorEnd { get; set; } /// /// 地下层数 /// public int? UnderFloorCount { get; set; } #endregion #region 权属情况ownership /// /// 产权性质 /// public string PropertyRights { get; set; } /// /// 总共套数 /// public int? HouseCount { get; set; } /// /// 直管公房套数 /// public int? StraightHouseCount { get; set; } /// /// 自管公房套数 /// public int? SelfHouseCount { get; set; } /// /// 私房套数 /// public int? PrivateHouseCount { get; set; } /// /// 商品房套数 /// public int? BusinessCount { get; set; } /// /// 房改房套数 /// public int? ChangeHouseCount { get; set; } /// /// 拆迁安置房套数 /// public int? ResettlementHouseCount { get; set; } /// /// 其它套数 /// public int? OtherCount { get; set; } #endregion #region 管理情况manager #endregion #region 鉴定治理identification /// /// 房屋等级 1,2,3,4,C,d /// public int? HouseGrade { get; set; } /// /// 房屋使用状态 /// public int? HouseUsedStatus { get; set; } #endregion #region 图纸资料存档处drawing /// /// 图纸资料存档处 /// public string DrawingMaterial { get; set; } /// /// 其他图纸存档 /// public string DrawingMaterialText { get; set; } #endregion #region 相关附件资料attachments /// /// 立项文件 /// public string AnEntryDocument { get; set; } /// /// 规划许可 /// public string PlanningPermission { get; set; } /// /// 竣工验收备案 /// public string CompletionRecord { get; set; } /// /// 监理资料 /// public string MonitorDocument { get; set; } /// /// 鉴定报告 /// public string IdentificationReport { get; set; } /// /// 其它资料 /// public string OtherDocument { get; set; } #endregion #region 建筑概貌aspect /// /// 外立面照片 /// public string FacadePhoto { get; set; } #endregion public int State { get; set; } #region 调查单位unit /// /// 调查登记机构 /// public string InvestigateAgency { get; set; } /// /// 纸质资料调查人 /// public string InvestigateUser { get; set; } /// /// 纸质资料审核人 /// public string OfflineAuditor { get; set; } /// /// 主管部门 /// public string CompetentDepartment { get; set; } #endregion } public class HouseInfoOutputForDetailPage { #region header public HouseCodeOutput HouseCode { get; set; } #endregion public HouseInfoOutput HouseInfo { get; set; } public HouseTaskOutput PatrolInfo { get; set; } } }