采用全新的数据库架构

This commit is contained in:
yubaolee
2015-10-26 21:58:12 +08:00
parent 366d3a5351
commit 13d44f28b6
91 changed files with 21208 additions and 9430 deletions

22
OpenAuth.Domain/Module.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
namespace OpenAuth.Domain
{
public partial class Module
{
public int Id { get; set; }
public string CascadeId { get; set; }
public string Name { get; set; }
public string Url { get; set; }
public string HotKey { get; set; }
public int ParentId { get; set; }
public bool IsLeaf { get; set; }
public bool IsAutoExpand { get; set; }
public string IconName { get; set; }
public int Status { get; set; }
public string ParentName { get; set; }
public string Vector { get; set; }
public int SortNo { get; set; }
}
}