userjob .cs

来自「财务凭证管理系统 主要功能 财务凭证管理系统主要由【系统管理】、【凭证管理】」· CS 代码 · 共 38 行

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

namespace property.model.SystemInfo
{
    class UserJob
    {
        private string username;//--用户姓名  
        private string usermonofile;//单位名称
        private string useraddress;//联系地址]
        private string useracridine; //邮政编码
	    private string userphone;//邮政编码
        public void setUsername(string username)
        { this.username = username; }
        public string getUsername()
        {
            return this.username;
        }
        public void setUsermonofile(string usermonofile)
        { this.usermonofile = usermonofile; }
        public string getUsermonofile()
        { return this.usermonofile; }
        public void setUseraddress(string useraddress)
        { this.useraddress = useraddress; }
        public string getUseraddress()
        { return this.useraddress; }
        public void setUseracridine(string useracridine)
        { this.useracridine = useracridine; }
        public string getUseracridine()
        { return this.useracridine; }
        public void setUserphone(string userphone)
        { this.userphone = userphone; }
        public string getUserphone()
        { return this.userphone; }
    }// end block mehtod 
}

⌨️ 快捷键说明

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