FmsComplaintCodeType.cs 736 B

12345678910111213141516171819202122
  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 FmsComplaintCodeType {
  7. public FmsComplaintCodeType() {
  8. FmsComplaints = new HashSet<FmsComplaints>();
  9. }
  10. public int ComplaintTypeId { get; set; }
  11. [Display(Name = "민원코드명"), Required]
  12. [StringLength(24)]
  13. public string Name { get; set; }
  14. [Display(Name = "사용여부"), Required]
  15. public bool? IsUse { get; set; }
  16. [InverseProperty("FmsComplaintCodeType")]
  17. public virtual ICollection<FmsComplaints> FmsComplaints { get; set; }
  18. }
  19. }