Asp.net源码专业站
首页->商务办公->客户关系管理系统源码>>App-Code/EntityClass/LinkRecordEntity.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:客户关系管理系统源码
当前文件:文件类型 myCRM/App_Code/EntityClass/LinkRecordEntity.cs[1K,2009-6-12 11:48:08]打开代码结构图
普通视图
		            
1using System; 2 3/// <summary> 4/// 最近联系记录的实体 5/// </summary> 6public class LinkRecordEntity 7{ 8 //定义私有变量 9 private string _name = ""; 10 private string _username = ""; 11 private string _note = ""; 12 //设置日期默认为当日日期 13 private DateTime _linkdate = DateTime.Now.Date; 14 15 //无参数的构造函数 16 public LinkRecordEntity() 17 { 18 } 19 /// <summary> 20 /// 有参数的构造函数,初始化日志内容 21 /// </summary> 22 /// <param name="name">员工姓名</param> 23 /// <param name="username">客户名称</param> 24 /// <param name="note">联系备注</param> 25 /// <param name="linkdate">日期</param> 26 public LinkRecordEntity(string name, string username, string note, DateTime linkdate) 27 { 28 //为私有变量赋值 29 this._name = name; 30 this._username = username; 31 this._note = note; 32 this._linkdate = linkdate; 33 } 34 35 //员工姓名 36 public string Name 37 { 38 get { return _name; } 39 set { _name = value; } 40 } 41 //客户名称 42 public string UserName 43 { 44 get { return _username; } 45 set { _username = value; } 46 } 47 //联系备注 48 public string Note 49 { 50 get { return _note; } 51 set { _note = value; } 52 } 53 //联系日期 54 public DateTime LinkDate 55 { 56 get { return _linkdate; } 57 set { _linkdate = value; } 58 } 59} 60
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:客户关系管理系统源码
51Aspx.com 版权所有 CopyRight © 2006-2010. 京ICP备06046876号 本站法律顾问:ITlaw-庄毅雄律师
返回顶部
客户服务:点击这里进行客户咨询 业务合作:点击这里洽谈业务合作 合作热线:010-68880146