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