using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace FMSAdmin.Entities { public partial class BemsServiceType { public BemsServiceType() { BemsDeviceRunHistory = new HashSet(); BemsDeviceRunHourly = new HashSet(); BemsEnergyDaily = new HashSet(); BemsLoadsHourly = new HashSet(); BemsMonitoringPoint = new HashSet(); BemsMonitoringPointBaseData = new HashSet(); BemsZoneActivate = new HashSet(); } //관제점 용도 타입 [Display(Name = "관제점 용도 타입ID"), Key] public short? ServiceTypeId { get; set; } [Display(Name = "관제점 용도 이름")] [StringLength(48)] public string Name { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsDeviceRunHistory { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsDeviceRunHourly { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsEnergyDaily { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsLoadsHourly { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsMonitoringPoint { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsMonitoringPointBaseData { get; set; } [InverseProperty("ServiceType")] public virtual ICollection BemsZoneActivate { get; set; } } }