• 大小: 31.86MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-11
  • 语言: C#
  • 标签: .net  c#  CRM  

资源简介

CRM客户关系管理系统源码,C#,.NETCRM客户关系管理系统源码,C#,.NET

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Collections.Generic;
using tomoral.Common;
using tomoral.Model;
namespace tomoral.BLL
{
/// 
/// CRM_Contact
/// 

public partial class CRM_Contact
{
private readonly tomoral.DAL.CRM_Contact dal=new tomoral.DAL.CRM_Contact();
public CRM_Contact()
{}
#region  Method

/// 
/// 得到最大ID
/// 

public int GetMaxId()
{
return dal.GetMaxId();
}

/// 
/// 是否存在该记录
/// 

public bool Exists(int id)
{
return dal.Exists(id);
}

/// 
/// 增加一条数据
/// 

public int  Add(tomoral.Model.CRM_Contact model)
{
return dal.Add(model);
}

/// 
/// 更新一条数据
/// 

public bool Update(tomoral.Model.CRM_Contact model)
{
return dal.Update(model);
}

/// 
/// 预删除
/// 

/// 
/// 
/// 
/// 
public bool AdvanceDelete(int id int isDelete string time)
{
return dal.AdvanceDelete(id isDelete time);
}
/// 
/// 删除一条数据
/// 

public bool Delete(int id)
{

return dal.Delete(id);
}
/// 
/// 删除一条数据
/// 

public bool DeleteList(string idlist )
{
return dal.DeleteList(idlist );
}

/// 
/// 得到一个对象实体
/// 

public tomoral.Model.CRM_Contact GetModel(int id)
{

return dal.GetModel(id);
}

/// 
/// 得到一个对象实体,从缓存中
/// 

public tomoral.Model.CRM_Contact GetModelByCache(int id)
{

string CacheKey = “CRM_ContactModel-“ + id;
object objModel = tomoral.Common.DataCache.GetCache(CacheKey);
if (objModel == null)
{
try
{
objModel = dal.GetModel(id);
if (objModel != null)
{
int ModelCache = tomoral.Common.ConfigHelper.GetConfigInt(“ModelCache“);
tomoral.Common.DataCache.SetCache(CacheKey objModel DateTime.Now.AddMinutes(ModelCache) TimeSpan.Zero);
}
}
catch{}
}
return (tomoral.Model.CRM_Contact)objModel;
}

/// 
/// 获得数据列表
/// 

public DataSet GetList(string strWhere)
{
return dal.GetList(strWhere);
}
/// 
/// 获得前几行数据
/// 

public DataSet GetList(int Topstring strWherestring filedOrder)
{
return dal.GetList(TopstrWherefiledOrder);
}
/// 
/// 获得数据列表
/// 

public List GetModelList(string strWhere)
{
DataSet ds = dal.GetList(strWhere);
return DataTableToList(ds.Tables[0]);
}
/// 
/// 获得数据列表
/// 

public List DataTableToList(DataTable dt)
{
List modelList = new List();
int rowsCount = dt.Ro

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1270  2014-07-01 16:05  .net ---CRM客户管理系统源码\App_Date\TMCRM V1.0.0.10 UPDATE.sql

     文件        148  2014-07-01 16:04  .net ---CRM客户管理系统源码\App_Date\TMCRM V1.0.0.11 UPDATE.sql

     文件      44239  2014-12-19 21:31  .net ---CRM客户管理系统源码\App_Date\TMCRM V1.15.0.1 UPDATE.sql

     文件     329216  2014-12-29 17:47  .net ---CRM客户管理系统源码\App_Date\TMCRM(可兼容2005).sql

     文件    3691008  2015-01-09 23:52  .net ---CRM客户管理系统源码\App_Date\tmcrm.bak

     文件    4194304  2015-04-17 18:26  .net ---CRM客户管理系统源码\App_Date\TMCRM.mdf

     文件    1048576  2015-04-17 18:26  .net ---CRM客户管理系统源码\App_Date\TMCRM_0.ldf

     文件      59000  2012-02-08 00:08  .net ---CRM客户管理系统源码\DLL\VBIDE.dll

     文件      15360  2011-08-20 22:18  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\COM.Excel.dll

     文件    1089536  2011-08-20 22:18  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\Excel.dll

     文件     102400  2011-08-20 22:18  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\IBatisNet.Common.dll

     文件     249856  2011-08-20 22:18  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\IBatisNet.DataMapper.dll

     文件     320512  2011-01-04 13:48  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\Newtonsoft.Json.Net35.dll

     文件      45056  2011-08-20 22:18  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\OpenSmtp.dll

     文件     110592  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.BLL.dll

     文件     269824  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.BLL.pdb

     文件      61440  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Common.dll

     文件     138752  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Common.pdb

     文件     262144  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DAL.dll

     文件     296448  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DAL.pdb

     文件      61440  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DBUtility.dll

     文件     165376  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DBUtility.pdb

     文件      73728  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Model.dll

     文件     333312  2016-11-30 14:29  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Model.pdb

     文件     110592  2015-01-06 10:54  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.BLL.dll

     文件     310784  2015-01-06 10:54  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.BLL.pdb

     文件      61440  2014-08-25 08:57  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.Common.dll

     文件     148992  2014-08-25 08:57  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.Common.pdb

     文件     262144  2015-01-06 10:53  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.DAL.dll

     文件     337408  2015-01-06 10:53  .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.DAL.pdb

............此处省略7327个文件信息

评论

共有 条评论