📄 departinfo.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace MyOffice.Models
{
[Serializable()]
public class DepartInfo
{
private int departID;
private string principalUser;
private BranchInfo branch;
private string departName = String.Empty;
private long connectTelNo;
private long connectMobileTelNo;
private long faxes;
public DepartInfo() { }
public int DepartID
{
get { return this.departID; }
set { this.departID = value; }
}
public string PrincipalUser
{
get { return this.principalUser; }
set { this.principalUser = value; }
}
public BranchInfo Branch
{
get { return this.branch; }
set { this.branch = value; }
}
public string DepartName
{
get { return this.departName; }
set { this.departName = value; }
}
public long ConnectTelNo
{
get { return this.connectTelNo; }
set { this.connectTelNo = value; }
}
public long ConnectMobileTelNo
{
get { return this.connectMobileTelNo; }
set { this.connectMobileTelNo = value; }
}
public long Faxes
{
get { return this.faxes; }
set { this.faxes = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -