📄 userjob .cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -