BemsAlarmGroup.cs 531 B

12345678910111213141516
  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 BemsAlarmGroup {
  7. [Display(Name = "현장 고유번호"), Key]
  8. public int SiteId { get; set; }
  9. [Display(Name = "그룸 ID"), Key]
  10. public int AlarmGroupId { get; set; }
  11. [Display(Name = "그룹 이름"), Required]
  12. [StringLength(50)]
  13. public string Name { get; set; }
  14. }
  15. }