using System; using System.Collections.Generic; using System.Text; using Datory; using Datory.Annotations; namespace GxPress.Entity { /// ///个人通知文件夹 /// [DataTable("tede_notice_folder")] public class NoticeFolder : Datory.Entity { /// /// 名称 /// [DataColumn] public string FolderName { get; set; } /// /// 创建人ID /// [DataColumn] public int UserId { get; set; } /// /// 父级ID /// [DataColumn] public int ParentId { get; set; } /// /// 是否置顶 /// [DataColumn] public bool IsTop { get; set; } } }