UNPKG

@golemio/energetics

Version:
125 lines (124 loc) 5.7 kB
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { ISecondaryBuildings } from "./interfaces/ISecondaryBuildings"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Point } from "@golemio/core/dist/shared/geojson"; export declare class BuildingsSecondaryModel extends Model<ISecondaryBuildings> implements ISecondaryBuildings { static tableName: string; static modelName: string; id: number; building_address_code: string; building_label: string; current_note: string; method_of_protection: string; built_up_area: number; heated_bulding_volume: number; students_count: number; employees_count: number; classrooms_count: number; beds_count: number; eno_id: string; csu_code: string; ku_code: string; allotment_number: string; registration_unit: string; energetic_management: string; opening_hours: string; weekend_opening_hours: string; latitude: string; longitude: string; location: Point; address_street: string; address_house_number: string; address_city: string; address_country: string; address_mail: string; address_phone: string; address_web_address: string; penb_penbnumber: number; penb_issue_date: string; penb_total_building_envelope_area: number; penb_volume_factor_of_avshape: string; penb_total_energy_reference_area: number; penb_total_provided_energy: number; penb_total_provided_energy_category: string; penb_primary_non_renewable_energy: number; penb_primary_non_renewable_energy_category: string; penb_building_envelope: number; penb_building_envelope_category: string; penb_heating: number; penb_heating_category: string; penb_cooling: number; penb_cooling_category: string; penb_ventilation: number; penb_ventilation_category: string; penb_humidity_adjustment: number; penb_humidity_adjustment_category: string; penb_warm_water: number; penb_warm_water_category: string; penb_lighting: number; penb_lighting_category: string; energy_audits_energy_audit: string; energy_audits_earegistration_number: string; energy_audits_created_at: string; building_envelope_side_wall_prevailing_construction: string; building_envelope_side_wall_area: number; building_envelope_side_wall_heat_insulation: string; building_envelope_side_wall_year_of_adjustment: string; building_envelope_side_wall_technical_condition: string; building_envelope_filling_of_hole_construction: string; building_envelope_filling_of_hole_area: number; building_envelope_filling_of_hole_year_of_adjustment: string; building_envelope_filling_of_hole_technical_condition: string; building_envelope_roof_construction: string; building_envelope_roof_area: number; building_envelope_roof_thermal_insulation: string; building_envelope_roof_year_of_adjustment: string; building_envelope_roof_technical_condition: string; building_envelope_floor_of_the_lowest_heated_floor_construction: string; building_envelope_floor_of_the_lowest_heated_floor_area: number; floor_of_the_lowest_heated_floor_thermal_insulation: string; building_envelope_floor_of_the_lowest_heated_floor_year_of_adju: string; floor_of_the_lowest_heated_floor_technical_condition: string; fuel_and_energy_coal: boolean; fuel_and_energy_gas: boolean; fuel_and_energy_electricity: boolean; fuel_and_energy_czt: boolean; fuel_and_energy_oze: boolean; fuel_and_energy_other: boolean; technical_equipment_heating_main_source_of_heat: string; technical_equipment_heating_heat_percentage: number; technical_equipment_heating_secondary_source_of_heat: string; technical_equipment_heating_heating_system: string; technical_equipment_heating_year: string; technical_equipment_heating_technical_condition: string; technical_equipment_cooling_cooling_system: string; technical_equipment_cooling_cooling_area_percentage: number; technical_equipment_cooling_year: string; technical_equipment_cooling_technical_condition: string; technical_equipment_ventilation_ventilation: string; technical_equipment_ventilation_year: string; technical_equipment_ventilation_technical_condition: string; technical_equipment_humidity_adjustment_humidity_adjustment: string; technical_equipment_humidity_adjustment_year: string; technical_equipment_humidity_adjustment_technical_condition: string; technical_equipment_hot_water_predominant_way_of_heating_tv: string; technical_equipment_hot_water_hot_water_source: string; technical_equipment_hot_water_year: string; technical_equipment_hot_water_technical_condition: string; technical_equipment_lighting_lighting: string; technical_equipment_lighting_year: string; technical_equipment_lighting_technical_condition: string; technical_equipment_lighting_other_technological_elements: string; technical_equipment_lighting_measurement_method: string; oze_energy_production_solar_energy_photovoltaic: string; oze_energy_production_solar_energy_photothermal: string; oze_energy_production_integrated_turbines_wind_energy: string; oze_energy_production_heat_pump: string; waste_and_emissions_solid_waste_production: string; waste_and_emissions_tied_co2_emissions: string; waste_and_emissions_sox_emissions: string; waste_and_emissions_operating_co_2emissions: string; link: string; static attributeModel: ModelAttributes<BuildingsSecondaryModel>; static arrayJsonSchema: JSONSchemaType<ISecondaryBuildings[]>; }