CmInvestigation2CodeGroup.cs 814 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 CmInvestigation2CodeGroup {
  7. public CmInvestigation2CodeGroup() {
  8. CmInvestigation2 = new HashSet<CmInvestigation2>();
  9. }
  10. [Display(Name = "고유번호"), Key]
  11. public int InvestigationGroupId { 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("CmInvestigation2CodeGroup")]
  18. public virtual ICollection<CmInvestigation2> CmInvestigation2 { get; set; }
  19. }
  20. }