FmsDrawingCodeGroup.cs 760 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 FmsDrawingCodeGroup {
  7. public FmsDrawingCodeGroup() {
  8. FmsDrawing = new HashSet<FmsDrawing>();
  9. }
  10. [Display(Name = "고유번호"), Key]
  11. public int DrawingGroupId { get; set; }
  12. [Display(Name = "도면분류명칭"), Required]
  13. [StringLength(50)]
  14. public string Name { get; set; }
  15. [Display(Name = "사용 유무")]
  16. public bool? IsUse { get; set; }
  17. [InverseProperty("FmsDrawingCodeGroup")]
  18. public virtual ICollection<FmsDrawing> FmsDrawing { get; set; }
  19. }
  20. }