You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Models/CRMClientVisitEntity.cs

196 lines
4.3 KiB
C#

2 years ago
using System;
using System.Data;
namespace DSWeb.Models
{
/// <summary>
/// CRM系统客户拜访记录信息表
/// </summary>
public class CRMClientVisitEntity
{
public CRMClientVisitEntity()
{
}
private string _gid;
/// <summary>
/// GID
/// </summary>
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
private string _clientgid;
/// <summary>
/// 潜在客户GID
/// </summary>
public string CLIENTGID
{
get{ return _clientgid; }
set{ _clientgid = value; }
}
private string _shortname;
/// <summary>
/// 客户简称
/// </summary>
public string SHORTNAME
{
get{ return _shortname; }
set{ _shortname = value; }
}
private string _contactname;
/// <summary>
/// 客户联系人
/// </summary>
public string CONTACTNAME
{
get{ return _contactname; }
set{ _contactname = value; }
}
private string _sale;
/// <summary>
/// 销售
/// </summary>
public string SALE
{
get{ return _sale; }
set{ _sale = value; }
}
private string _visitway;
/// <summary>
/// 拜访方式
/// </summary>
public string VISITWAY
{
get{ return _visitway; }
set{ _visitway = value; }
}
private string _visitcontent;
/// <summary>
/// 拜访内容
/// </summary>
public string VISITCONTENT
{
get{ return _visitcontent; }
set{ _visitcontent = value; }
}
private DateTime _visitdate;
/// <summary>
/// 拜访时间
/// </summary>
public DateTime VISITDATE
{
get{ return _visitdate; }
set{ _visitdate = value; }
}
private string _nextaction;
/// <summary>
/// 下次行动
/// </summary>
public string NEXTACTION
{
get{ return _nextaction; }
set{ _nextaction = value; }
}
private string _nextcontent;
/// <summary>
/// 下次行动内容
/// </summary>
public string NEXTCONTENT
{
get{ return _nextcontent; }
set{ _nextcontent = value; }
}
private DateTime _nextdate;
/// <summary>
/// 下次回访时间
/// </summary>
public DateTime NEXTDATE
{
get{ return _nextdate; }
set{ _nextdate = value; }
}
private string _createuser;
/// <summary>
/// 创建人
/// </summary>
public string CREATEUSER
{
get{ return _createuser; }
set{ _createuser = value; }
}
private DateTime _createtime;
/// <summary>
/// 创建时间
/// </summary>
public DateTime CREATETIME
{
get{ return _createtime; }
set{ _createtime = value; }
}
private string _modifieduser;
/// <summary>
/// 最后一次更新操作人
/// </summary>
public string MODIFIEDUSER
{
get{ return _modifieduser; }
set{ _modifieduser = value; }
}
private DateTime _modifiedtime;
/// <summary>
/// 最后一次更新操作时间
/// </summary>
public DateTime MODIFIEDTIME
{
get{ return _modifiedtime; }
set{ _modifiedtime = value; }
}
private bool _islock;
/// <summary>
/// 是否解锁
/// </summary>
public bool ISLOCK
{
get{ return _islock; }
set{ _islock = value; }
}
private DateTime _locktime;
/// <summary>
/// 解锁时间
/// </summary>
public DateTime LOCKTIME
{
get{ return _locktime; }
set{ _locktime = value; }
}
private string _lockuser;
/// <summary>
/// 解锁操作人
/// </summary>
public string LOCKUSER
{
get{ return _lockuser; }
set{ _lockuser = value; }
}
}
}