roleinfo.cs

来自「will let you know the result once they r」· CS 代码 · 共 55 行

CS
55
字号
//============================================================
// 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 + =
减小字号Ctrl + -
显示快捷键?