using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace FMSAdmin.Entities { public partial class BemsValueType { public BemsValueType() { BemsMonitoringPoint = new HashSet(); //BemsMonitoringPointBaseData = new HashSet(); } [Key] public int ValueType { get; set; } [StringLength(48), Display(Name = "값명")] public string Name { get; set; } //[InverseProperty("ValueType")] public virtual ICollection BemsMonitoringPoint { get; set; } // [InverseProperty("ValueType")] // public virtual ICollection BemsMonitoringPointBaseData { get; set; } } }