change easyui to bootstrap

This commit is contained in:
yubaolee
2015-04-27 00:10:02 +08:00
parent 370b390c7c
commit ae2d70a028
171 changed files with 5584 additions and 17324 deletions

View File

@@ -17,7 +17,7 @@ namespace OpenAuth.Domain.Model
public string Control_ID { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public Nullable<int> Enabled { get; set; }
public bool Enabled { get; set; }
public Nullable<int> SortCode { get; set; }
public virtual ICollection<RoleMenuButton> RoleMenuButtons { get; set; }
}

View File

@@ -15,9 +15,9 @@ namespace OpenAuth.Domain.Model
public string ParentId { get; set; }
public string FullName { get; set; }
public string Description { get; set; }
public Nullable<int> Enabled { get; set; }
public bool Enabled { get; set; }
public Nullable<int> SortCode { get; set; }
public Nullable<int> DeleteMark { get; set; }
public bool DeleteMark { get; set; }
public virtual ICollection<Role> Roles { get; set; }
public virtual ICollection<User> Users { get; set; }
}

View File

@@ -20,8 +20,8 @@ namespace OpenAuth.Domain.Model
public string NavigateUrl { get; set; }
public string FormName { get; set; }
public string Target { get; set; }
public Nullable<int> IsUnfold { get; set; }
public Nullable<int> Enabled { get; set; }
public bool IsUnfold { get; set; }
public bool Enabled { get; set; }
public Nullable<int> SortCode { get; set; }
public virtual ICollection<Button> Buttons { get; set; }
public virtual ICollection<RoleMenuButton> RoleMenuButtons { get; set; }

View File

@@ -18,9 +18,9 @@ namespace OpenAuth.Domain.Model
public string FullName { get; set; }
public string Category { get; set; }
public string Description { get; set; }
public Nullable<int> Enabled { get; set; }
public bool Enabled { get; set; }
public Nullable<int> SortCode { get; set; }
public Nullable<int> DeleteMark { get; set; }
public bool DeleteMark { get; set; }
public string DepartmentId { get; set; }
public virtual ICollection<DataPermission> DataPermissions { get; set; }
public virtual Department Department { get; set; }

View File

@@ -21,5 +21,7 @@ namespace OpenAuth.Domain.Model
public virtual ICollection<Department> Departments { get; set; }
public virtual ICollection<Role> Roles { get; set; }
public Role DefaultRole { get; set; }
}
}