userinfoconfig.cs

来自「该服务平台解决了计算机网络与移动网络之间信息交换问题」· CS 代码 · 共 173 行

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

namespace DataAccess.TableDefine
{
    public class UserInfoConfig
    {
        private int pk_id;
        public int PK_ID
        {
            get { return pk_id; }
            set { pk_id = value; }
        }

        private int userTypeID;
        public int UserTypeID
        {
            get { return userTypeID;}
            set { userTypeID = value;}
        }
        
        private string id;
        public string ID
        {
            get { return id;}
            set { id = value;}
        }

        private string studentID;
        public string StudentID
        {
            get { return studentID;}
            set { studentID = value;}
        }

        private string employeeID;
        public string EmployeeID
        {
            get { return employeeID; }
            set { employeeID = value; }
        }

        private string name;
        public string Name
        {
            get { return name; }
            set { name = value; }

        }

        private int sex;
        public int Sex
        {
            get { return sex; }
            set { sex = value; }
        }

        private string birthday;
        public string Birthday
        {
            get { return birthday; }
            set { birthday = value; }
        }

        private string schoolName;
        public string SchoolName
        {
            get { return schoolName; }
            set { schoolName = value; }
        }

        private string companyName;
        public string CompanyName
        {
            get { return companyName; }
            set { companyName = value; }
        }

        private string gradeName;
        public string GradeName
        {
            get { return gradeName; }
            set { gradeName = value; }
        }

        private string branch;
        public string Branch
        {
            get { return branch; }
            set { branch = value; }
        }

        private string className;
        public string ClassName
        {
            get { return className; }
            set { className = value; }
        }

        private string dept;
        public string Dept
        {
            get { return dept; }
            set { dept = value; }
        }

        private string homeAddress;
        public string HomeAddress
        {
            get { return homeAddress; }
            set { homeAddress = value; }
        }

        private string address;
        public string Address
        {
            get { return address; }
            set { address = value; }
        }

        private string duty;
        public string Duty
        {
            get { return duty; }
            set { duty = value; }
        }


        private string organise;
        public string Organise
        {
            get { return organise; }
            set { organise = value; }
        }

        private string association;
        public string Association
        {
            get { return association; }
            set { association = value; }
        }

        private string mobile;
        public string Mobile
        {
            get { return mobile; }
            set { mobile = value; }
        }

        private string photo;
        public string Photo
        {
            get { return photo; }
            set { photo = value; }
        }

        private int answerForCompany;
        public int AnswerForCompany
        {
            get { return answerForCompany; }
            set { answerForCompany = value; }
        }

        private int userFunction;
        public int UserFunction
        {
            get { return userFunction; }
            set { userFunction = value; }
        }
    }
}

⌨️ 快捷键说明

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