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

📄 roleinfo.cs

📁 will let you know the result once they replied will let you know the result once they replied
💻 CS
字号:
//============================================================
// Producnt name:		BoBoARTS.CodeMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2008-7-16 10:21:28
//============================================================

using System;
using System.Collections.Generic;
using System.Text;

namespace MyOffice.Models
{

    [Serializable()]
    public class RoleInfo
    {

        private int roleID;
        private string roleName = String.Empty;
        private string roleDesc = String.Empty;



        public RoleInfo() { }




        public int RoleID
        {
            get { return this.roleID; }
            set { this.roleID = value; }
        }





        public string RoleName
        {
            get { return this.roleName; }
            set { this.roleName = value; }
        }


        public string RoleDesc
        {
            get { return this.roleDesc; }
            set { this.roleDesc = value; }
        }

    }
}

⌨️ 快捷键说明

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