using System; namespace NFine.Domain.Entity.SystemManage { public class ModuleButtonEntity : IEntity, ICreationAudited, IDeleteAudited, IModificationAudited { public string F_Id { get; set; } public string F_ModuleId { get; set; } public string F_ParentId { get; set; } public int? F_Layers { get; set; } public string F_EnCode { get; set; } public string F_FullName { get; set; } public string F_Icon { get; set; } public int? F_Location { get; set; } public string F_JsEvent { get; set; } public string F_UrlAddress { get; set; } public bool? F_Split { get; set; } public bool? F_IsPublic { get; set; } public bool? F_AllowEdit { get; set; } public bool? F_AllowDelete { get; set; } public int? F_SortCode { get; set; } public bool? F_DeleteMark { get; set; } public bool? F_EnabledMark { get; set; } public string F_Description { get; set; } public DateTime? F_CreatorTime { get; set; } public string F_CreatorUserId { get; set; } public DateTime? F_LastModifyTime { get; set; } public string F_LastModifyUserId { get; set; } public DateTime? F_DeleteTime { get; set; } public string F_DeleteUserId { get; set; } } }