⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysman.cs

📁 .net 开发的基础框架
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

using SPRFrame;
using SPRFrame.DataType;

namespace SysManage.BLL
{
    class SysMan
    {
        public System_Info_List ListSystemInfo()
        {
            System_Info_List sl = new System_Info_List();
            sl.Retrieve();
            return sl;
        }
        public System_Menu_List ListSystemMenu(string sSysId)
        {
            return SPRF.ListSystemMenu(sSysId);
        }

        public System_File_List ListFile()
        {
            return SPRF.ListFile();
        }

        public System_R_File ListSysFile(string sSysId)
        {
            return SPRF.ListSysFile(sSysId);
        }

        public System_User_List ListUser()
        {
            return SPRF.ListUser();
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -