using System; using System.Collections; using System.Collections.Generic; namespace AIMSModel { [Serializable] public partial class KnowledgeBase { private int? id; private int? parentId; private string nanme; private string content; private int? orderBy; private string imagePath; private string videoPath; public List SubItem { get; set; } /// /// /// public int? Id { get { return id; } set { id = value; } } /// /// 所属父类编号 /// public int? ParentId { get { return parentId; } set { parentId = value; } } /// /// /// public string Nanme { get { return nanme; } set { nanme = value; } } /// /// 知识内容 /// public string Content { get { return content; } set { content = value; } } /// /// 排序 /// public int? OrderBy { get { return orderBy; } set { orderBy = value; } } /// /// 图像 /// public string ImagePath { get { return imagePath; } set { imagePath = value; } } /// /// 视频 /// public string VideoPath { get { return videoPath; } set { videoPath = value; } } } }