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