📄 companymessage.cs
字号:
using System;
namespace HouseBE
{
/// <summary>
/// CompanyMessage 实体 公司信息表。
/// </summary>
public class CompanyMessage
{
private string _CompanyName;
private string _CompanyAddress;
private string _CompanyEmail;
private string _CompanyTelphone;
private string _CompanyNet;
private string _Corporation;
private string _Fax;
private int _Employees;
private string _Remark;
public string CompanyName
{
set
{
this._CompanyName=value;
}
get
{
return this._CompanyName;
}
}
public string CompanyAddress
{
set
{
this._CompanyAddress=value;
}
get
{
return this._CompanyAddress;
}
}
public string CompanyEmail
{
set
{
this._CompanyEmail=value;
}
get
{
return this._CompanyEmail;
}
}
public string CompanyTelphone
{
set
{
this._CompanyTelphone=value;
}
get
{
return this._CompanyTelphone;
}
}
public string CompanyNet
{
set
{
this._CompanyNet=value;
}
get
{
return this._CompanyNet;
}
}
public string Corporation
{
set
{
this._Corporation=value;
}
get
{
return this._Corporation;
}
}
public string Fax
{
set
{
this._Fax=value;
}
get
{
return this._Fax;
}
}
public int Employees
{
set
{
this._Employees=value;
}
get
{
return this._Employees;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -