This commit is contained in:
17
Api/Ewide.Core/Ewide.Core.Model/EC_Appliaction.cs
Normal file
17
Api/Ewide.Core/Ewide.Core.Model/EC_Appliaction.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Appliaction
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Url { get; set; }
|
||||
public int AuthorityType { get; set; }
|
||||
}
|
||||
}
|
||||
24
Api/Ewide.Core/Ewide.Core.Model/EC_Dictionary.cs
Normal file
24
Api/Ewide.Core/Ewide.Core.Model/EC_Dictionary.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Dictionary
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string ParentID { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Code { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string Values { get; set; }
|
||||
public string Desc { get; set; }
|
||||
public bool IsSystem { get; set; }
|
||||
public int Sort { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
}
|
||||
}
|
||||
23
Api/Ewide.Core/Ewide.Core.Model/EC_Function.cs
Normal file
23
Api/Ewide.Core/Ewide.Core.Model/EC_Function.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Function
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string MenuID { get; set; }
|
||||
public string AppliactionID { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string Icon { get; set; }
|
||||
public string Theme { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
25
Api/Ewide.Core/Ewide.Core.Model/EC_Menu.cs
Normal file
25
Api/Ewide.Core/Ewide.Core.Model/EC_Menu.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Menu
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string ParentID { get; set; }
|
||||
public int Type { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Component { get; set; }
|
||||
public string Icon { get; set; }
|
||||
public string Color { get; set; }
|
||||
public bool IsSystem { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public int Sort { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
}
|
||||
}
|
||||
18
Api/Ewide.Core/Ewide.Core.Model/EC_Menu_Appliaction.cs
Normal file
18
Api/Ewide.Core/Ewide.Core.Model/EC_Menu_Appliaction.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Menu_Appliaction
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string MenuID { get; set; }
|
||||
public int RelationType { get; set; }
|
||||
public string RelationID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
18
Api/Ewide.Core/Ewide.Core.Model/EC_Role.cs
Normal file
18
Api/Ewide.Core/Ewide.Core.Model/EC_Role.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Role
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Desc { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
}
|
||||
}
|
||||
19
Api/Ewide.Core/Ewide.Core.Model/EC_Role_Menu.cs
Normal file
19
Api/Ewide.Core/Ewide.Core.Model/EC_Role_Menu.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Role_Menu
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string MenuID { get; set; }
|
||||
public string ParentMenuID { get; set; }
|
||||
public string RoleID { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
}
|
||||
}
|
||||
17
Api/Ewide.Core/Ewide.Core.Model/EC_Role_Menu_Appliaction.cs
Normal file
17
Api/Ewide.Core/Ewide.Core.Model/EC_Role_Menu_Appliaction.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_Role_Menu_Appliaction
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string RoleMenuID { get; set; }
|
||||
public string MenuAppliactionID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
17
Api/Ewide.Core/Ewide.Core.Model/EC_System.cs
Normal file
17
Api/Ewide.Core/Ewide.Core.Model/EC_System.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_System
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public int Status { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string AdminID { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -6,9 +6,21 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_User
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string Account { get; set; }
|
||||
public string Password { get; set; }
|
||||
public string Name { get; set; }
|
||||
public int Type { get; set; }
|
||||
public int Sex { get; set; }
|
||||
public string Avatar { get; set; }
|
||||
public string Code { get; set; }
|
||||
public string Phone { get; set; }
|
||||
public string Desc { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
18
Api/Ewide.Core/Ewide.Core.Model/EC_User_Role.cs
Normal file
18
Api/Ewide.Core/Ewide.Core.Model/EC_User_Role.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Core.Model
|
||||
{
|
||||
[Serializable]
|
||||
public class EC_User_Role
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string UserID { get; set; }
|
||||
public string RoleID { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public string CreateUserID { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -54,7 +54,17 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="EC_Appliaction.cs" />
|
||||
<Compile Include="EC_Dictionary.cs" />
|
||||
<Compile Include="EC_Function.cs" />
|
||||
<Compile Include="EC_Menu.cs" />
|
||||
<Compile Include="EC_Menu_Appliaction.cs" />
|
||||
<Compile Include="EC_Role.cs" />
|
||||
<Compile Include="EC_Role_Menu.cs" />
|
||||
<Compile Include="EC_Role_Menu_Appliaction.cs" />
|
||||
<Compile Include="EC_System.cs" />
|
||||
<Compile Include="EC_User.cs" />
|
||||
<Compile Include="EC_User_Role.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user