BemsAnalysisType.cs 844 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities {
  6. public partial class BemsAnalysisType {
  7. public BemsAnalysisType() {
  8. BemsMonitoringPointToAnlaysisType = new HashSet<BemsMonitoringPointToAnlaysisType>();
  9. }
  10. [Display(Name = "현장 고유번호"), Key]
  11. public int SiteId { get; set; }
  12. [Display(Name = "고장 유형"), Key]
  13. public int AnalysisType { get; set; }
  14. [Display(Name = "고장 유형 이름")]
  15. [StringLength(48)]
  16. public string Name { get; set; }
  17. [InverseProperty("BemsAnalysisType")]
  18. public virtual ICollection<BemsMonitoringPointToAnlaysisType> BemsMonitoringPointToAnlaysisType { get; set; }
  19. }
  20. }