懒羊羊
2023-12-28 e46d3baaf3e8d7d85f4bafec3aad75e52b078408
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using YX.DAL;
using YX.Entity;
namespace YX.BLL
{
    public class SystemRole_Bll
    {
        SystemRole_Dal role_dal = new SystemRole_Dal();
        /// <summary>
        /// 获取所有角色
        /// </summary>
        /// <returns></returns>
        public List<Base_Roles> GetRoles()
        {
            try
            {
                return role_dal.GetRoles();
            }
            catch (Exception ex)
            {
                
                throw ex;
            }
        }
        /// <summary>
        /// 通过角色ID 获取角色
        /// </summary>
        /// <param name="Roles_ID"></param>
        /// <returns></returns>
        public List<Base_Roles> GetRoleByRoleId(string Roles_ID)
        {
          
            try
            {
                return role_dal.GetRoleByRoleId(Roles_ID);
            }
            catch (Exception)
            {
 
                throw;
            }
           
        }
        /// <summary>
        /// 获取角色节点
        /// </summary>
        /// <returns></returns>
        public DataTable GetRoleParentId()
        {
            DataTable dt = new DataTable();
            try
            {
                return role_dal.GetRoleParentId();
 
            }
            catch (Exception ex)
            {
 
                throw ex;
            }
        
        }
        public List<Base_UserRole> GetUserRoleByUserID(string UserID)
        {
            try
            {
                return role_dal.GetUserRoleByUserID(UserID);
            }
            catch (Exception ex)
            {
 
                throw ex;
            }
        }
        public int AddRoles(Base_Roles info)
        {
            try
            {
                return role_dal.AddRoles(info);
            }
            catch (Exception ex)
            {
 
                throw ex;
            }
        }
        public int UpdateRoles(Base_Roles info)
        {
            try
            {
                return role_dal.UpdateRoles(info);
            }
            catch (Exception ex)
            {
 
                throw ex;
            }
        }
        public int DeleteRole(string RoleID)
        {
            try
            {
                return role_dal.DeleteRole(RoleID);
            }
            catch (Exception ex)
            {
 
                throw ex;
            }
        }
    }
}