12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using CZFW.Framework.Attributes;
- using CZFW.Framework.Model.Entity;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace CZKJ.GBRS2.Entity
- {
- /// <summary>
- /// 公开类型
- /// </summary>
- [Table("cz_gbrs2_publictype")]
- public class PublicTypeEntity : EntityBase
- {
- /// <summary>
- /// 类型名称
- /// </summary>
- [Display(Name = "名称")]
- [StringLength(36)]
- [Required]
- public string Name { get; set; }
- /// <summary>
- /// 父级Id
- /// </summary>
- [Display(Name = "父级类型")]
- [Invisible(FormVisible = true, AddVisible = true)]
- [DropdownSrc(SrcUrl = "/Manage/PublicType/GetAllList")]
- public int ParentId { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
- [Display(Name = "描述")]
- [StringLength(512)]
- public string Description { get; set; }
- /// <summary>
- /// 父级名称
- /// </summary>
- [NotMapped]
- [Display(Name = "父级类型")]
- [Invisible(TableVisible =true)]
- public string ParentName { get; set; }
- //[NotMapped]
- //[Invisible]
- //public IList<PublicTypeEntity> Children { get; set; }
- }
- }
|