using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace FMSAdmin.Entities { public partial class BemsFuelType { public BemsFuelType() { BemsDeviceRunHourlyCost = new HashSet(); BemsDeviceTypeUsingEnergy = new HashSet(); BemsEnergyDaily = new HashSet(); BemsMeasureHistory = new HashSet(); BemsMonitoringPoint = new HashSet(); BemsMonitoringPointBaseData = new HashSet(); BemsNoticePrice = new HashSet(); BemsNoticePriceContractType = new HashSet(); BemsPriceCode = new HashSet(); BemsPriceType = new HashSet(); BemsSitePrice = new HashSet(); BemsSitePriceHistory = new HashSet(); FmsEnergyAnalysis = new HashSet(); } [Key] public short FuelTypeId { get; set; } [StringLength(48), Display(Name = "연료명")] public string Name { get; set; } [InverseProperty("FuelType")] public virtual BemsFactorCo2 BemsFactorCo2 { get; set; } [InverseProperty("FuelType")] public virtual BemsFactorToe BemsFactorToe { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsDeviceRunHourlyCost { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsDeviceTypeUsingEnergy { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsEnergyDaily { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsMeasureHistory { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsMonitoringPoint { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsMonitoringPointBaseData { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsNoticePrice { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsNoticePriceContractType { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsPriceCode { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsPriceType { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsSitePrice { get; set; } [InverseProperty("FuelType")] public virtual ICollection BemsSitePriceHistory { get; set; } [InverseProperty("FuelType")] public virtual ICollection FmsEnergyAnalysis { get; set; } } }