student_tb.cs

来自「asp.net连带c++技术开发」· CS 代码 · 共 46 行

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

namespace Model
{
    public class student_tb
    {
        private int stud_id;

        public int Stud_id
        {
            get { return stud_id; }
            set { stud_id = value; }
        }
        private string stud_name;

        public string Stud_name
        {
            get { return stud_name; }
            set { stud_name = value; }
        }
        private int stud_dep_id;

        public int Stud_dep_id
        {
            get { return stud_dep_id; }
            set { stud_dep_id = value; }
        }
        private string stud_sex;

        public string Stud_sex
        {
            get { return stud_sex; }
            set { stud_sex = value; }
        }
        private string stud_pwd;

        public string Stud_pwd
        {
            get { return stud_pwd; }
            set { stud_pwd = value; }
        }
    }
}

⌨️ 快捷键说明

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