BemsControlGroup.cs 551 B

1234567891011121314151617
  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 BemsControlGroup {
  7. [Display(Name = "제어 그룹 명"), Required]
  8. [StringLength(64)]
  9. public string GroupName { get; set; }
  10. [Display(Name = "제어 그룸 ID"), Key]
  11. public int GroupId { get; set; }
  12. [Display(Name = "제어 그룹 명"), Required]
  13. public int ValueType { get; set; }
  14. }
  15. }