📄 buyer.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Hotel.Entity
{
public class Buyer
{
private int _buyerID;
public int BuyerID
{
get { return _buyerID; }
set { _buyerID = value; }
}
private string _bName;
public string BName
{
get { return _bName; }
set { _bName = value; }
}
private string _birthday;
public string Birthday
{
get { return _birthday; }
set { _birthday = value; }
}
private int _certificateID;
public int CertificateID
{
get { return _certificateID; }
set { _certificateID = value; }
}
private string _bCarNum;
public string BCarNum
{
get { return _bCarNum; }
set { _bCarNum = value; }
}
private string _bSex;
public string BSex
{
get { return _bSex; }
set { _bSex = value; }
}
private string _phone;
public string Phone
{
get { return _phone; }
set { _phone = value; }
}
private string _company;
public string Company
{
get { return _company; }
set { _company = value; }
}
private int _nationalityID;
public int NationalityID
{
get { return _nationalityID; }
set { _nationalityID = value; }
}
private int _provinceID;
public int ProvinceID
{
get { return _provinceID; }
set { _provinceID = value; }
}
private string _address;
public string Address
{
get { return _address; }
set { _address = value; }
}
private string _blacklist;
public string Blacklist
{
get { return _blacklist; }
set { _blacklist = value; }
}
private string _remark;
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -