PublicTypeEntity.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using CZFW.Framework.Attributes;
  2. using CZFW.Framework.Model.Entity;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace CZKJ.GBRS2.Entity
  6. {
  7. /// <summary>
  8. /// 公开类型
  9. /// </summary>
  10. [Table("cz_gbrs2_publictype")]
  11. public class PublicTypeEntity : EntityBase
  12. {
  13. /// <summary>
  14. /// 类型名称
  15. /// </summary>
  16. [Display(Name = "名称")]
  17. [StringLength(36)]
  18. [Required]
  19. public string Name { get; set; }
  20. /// <summary>
  21. /// 父级Id
  22. /// </summary>
  23. [Display(Name = "父级类型")]
  24. [Invisible(FormVisible = true, AddVisible = true)]
  25. [DropdownSrc(SrcUrl = "/Manage/PublicType/GetAllList")]
  26. public int ParentId { get; set; }
  27. /// <summary>
  28. /// 描述
  29. /// </summary>
  30. [Display(Name = "描述")]
  31. [StringLength(512)]
  32. public string Description { get; set; }
  33. /// <summary>
  34. /// 父级名称
  35. /// </summary>
  36. [NotMapped]
  37. [Display(Name = "父级类型")]
  38. [Invisible(TableVisible =true)]
  39. public string ParentName { get; set; }
  40. //[NotMapped]
  41. //[Invisible]
  42. //public IList<PublicTypeEntity> Children { get; set; }
  43. }
  44. }