123456789101112131415161718192021222324 |
- 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<BemsMonitoringPoint>();
- //BemsMonitoringPointBaseData = new HashSet<BemsMonitoringPointBaseData>();
- }
- [Key]
- public int ValueType { get; set; }
- [StringLength(48), Display(Name = "값명")]
- public string Name { get; set; }
- //[InverseProperty("ValueType")]
- public virtual ICollection<BemsMonitoringPoint> BemsMonitoringPoint { get; set; }
- // [InverseProperty("ValueType")]
- // public virtual ICollection<BemsMonitoringPointBaseData> BemsMonitoringPointBaseData { get; set; }
- }
- }
|