roleattribute.cs

来自「很不错的学生管理系统」· CS 代码 · 共 39 行

CS
39
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace com.egt.business
{
    public class RoleAttribute
    {
     /*
     * 编码人员:胡鹏飞
     * 
     * 编码时间:2007-9-27
     * 
     * 内容:角色属性类
     */
        #region Model
        private int _id;
        private string _names = string.Empty;
        /// <summary>
        /// 标识
        /// </summary>
        public int id
        {
            set { _id = value; }
            get { return _id; }
        }
        /// <summary>
        /// 名称
        /// </summary>
        public string names
        {
            set { _names = value; }
            get { return _names; }
        }
        #endregion Model

    }
}

⌨️ 快捷键说明

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