?? 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 + -