📄 customerinfo.cs
字号:
using System;
namespace CRM.Model
{
/// <summary>
/// 客户信息业务实体
/// </summary>
[Serializable]
public class CustomerInfo
{
private string _customerId; //客户编号
private string _customerName; //客户名称
private string _leader; //客户领导
private string _typeId; //客户类型
private string _deputyId; //联系人编号
private string _phone; //联系电话
private string _address; //联系地址
private string _postCode; //邮编
private string _fax; //传真
private string _email; //电子邮箱
private string _homePage; //主页
private string _levelId; //客户等级
private string _credit; //信用度
private string _bz; //备注
public CustomerInfo()
{
}
public string CustomerId
{
get{return _customerId;}
set{_customerId = value;}
}
public string CustomerName
{
get{return _customerName;}
set{_customerName = value;}
}
public string Leader
{
get{return _leader;}
set{_leader=value;}
}
public string TypeId
{
get{return _typeId;}
set{_typeId=value;}
}
public string DeputyId
{
get{return _deputyId;}
set{_deputyId=value;}
}
public string Phone
{
get{return _phone;}
set{_phone=value;}
}
public string Address
{
get{return _address;}
set{_address=value;}
}
public string PostCode
{
get{return _postCode;}
set{_postCode=value;}
}
public string Fax
{
get{return _fax;}
set{_fax=value;}
}
public string Email
{
get{return _email;}
set{_email=value;}
}
public string HomePage
{
get{return _homePage;}
set{_homePage=value;}
}
public string LevelId
{
get{return _levelId;}
set{_levelId=value;}
}
public string Credit
{
get{return _credit;}
set{_credit=value;}
}
public string BZ
{
get{return _bz;}
set{_bz=value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -