| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- /** 版本信息模板在安装目录下,可自行修改。
- * T_AutomaticCall_Phone.cs
- *
- * 功 能: N/A
- * 类 名: T_AutomaticCall_Phone
- *
- * Ver 变更日期 负责人 变更内容
- * ───────────────────────────────────
- * V0.01 2022/3/2 09:32:28 N/A 初版
- *
- * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
- *┌──────────────────────────────────┐
- *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
- *│ 版权所有:动软卓越(北京)科技有限公司 │
- *└──────────────────────────────────┘
- */
- using System;
- using System.Data;
- using System.Text;
- using System.Data.SqlClient;
-
- using CallCenterApi.DB;
- namespace CallCenterApi.DAL
- {
- /// <summary>
- /// 数据访问类:T_AutomaticCall_Phone
- /// </summary>
- public partial class T_AutomaticCall_Phone
- {
- public T_AutomaticCall_Phone()
- {}
- #region BasicMethod
- /// <summary>
- /// 增加一条数据
- /// </summary>
- public int Add(CallCenterApi.Model.T_AutomaticCall_Phone model)
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("insert into T_AutomaticCall_Phone(");
- strSql.Append("taskId,fix,phone,createTime,createBy,callState,salesOffice,broadbandAccount,accessTime,channel,service,package,fusion,phoneState,orderNature,address,result1,result2,result3,isconnect,calltime)");
- strSql.Append(" values (");
- strSql.Append("@taskId,@fix,@phone,@createTime,@createBy,@callState,@salesOffice,@broadbandAccount,@accessTime,@channel,@service,@package,@fusion,@phoneState,@orderNature,@address,@result1,@result2,@result3,@isconnect,@calltime)");
- strSql.Append(";select @@IDENTITY");
- SqlParameter[] parameters = {
- new SqlParameter("@taskId", SqlDbType.Int,4),
- new SqlParameter("@fix", SqlDbType.NVarChar,10),
- new SqlParameter("@phone", SqlDbType.NVarChar,50),
- new SqlParameter("@createTime", SqlDbType.DateTime),
- new SqlParameter("@createBy", SqlDbType.NVarChar,50),
- new SqlParameter("@callState", SqlDbType.Int,4),
- new SqlParameter("@salesOffice", SqlDbType.NVarChar,100),
- new SqlParameter("@broadbandAccount", SqlDbType.NVarChar,100),
- new SqlParameter("@accessTime", SqlDbType.NVarChar,50),
- new SqlParameter("@channel", SqlDbType.NVarChar,100),
- new SqlParameter("@service", SqlDbType.NVarChar,100),
- new SqlParameter("@package", SqlDbType.NVarChar,200),
- new SqlParameter("@fusion", SqlDbType.NVarChar,50),
- new SqlParameter("@phoneState", SqlDbType.NVarChar,50),
- new SqlParameter("@orderNature", SqlDbType.NVarChar,50),
- new SqlParameter("@address", SqlDbType.NVarChar,500),
- new SqlParameter("@result1", SqlDbType.NVarChar,50),
- new SqlParameter("@result2", SqlDbType.NVarChar,50),
- new SqlParameter("@result3", SqlDbType.NVarChar,50),
- new SqlParameter("@isconnect", SqlDbType.Int,4),
- new SqlParameter("@calltime", SqlDbType.DateTime)};
- parameters[0].Value = model.taskId;
- parameters[1].Value = model.fix;
- parameters[2].Value = model.phone;
- parameters[3].Value = model.createTime;
- parameters[4].Value = model.createBy;
- parameters[5].Value = model.callState;
- parameters[6].Value = model.salesOffice;
- parameters[7].Value = model.broadbandAccount;
- parameters[8].Value = model.accessTime;
- parameters[9].Value = model.channel;
- parameters[10].Value = model.service;
- parameters[11].Value = model.package;
- parameters[12].Value = model.fusion;
- parameters[13].Value = model.phoneState;
- parameters[14].Value = model.orderNature;
- parameters[15].Value = model.address;
- parameters[16].Value = model.result1;
- parameters[17].Value = model.result2;
- parameters[18].Value = model.result3;
- parameters[19].Value = model.isconnect;
- parameters[20].Value = model.calltime;
- object obj = DbHelperSQL.GetSingle(strSql.ToString(),parameters);
- if (obj == null)
- {
- return 0;
- }
- else
- {
- return Convert.ToInt32(obj);
- }
- }
- /// <summary>
- /// 更新一条数据
- /// </summary>
- public bool Update(CallCenterApi.Model.T_AutomaticCall_Phone model)
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("update T_AutomaticCall_Phone set ");
- strSql.Append("taskId=@taskId,");
- strSql.Append("fix=@fix,");
- strSql.Append("phone=@phone,");
- strSql.Append("createTime=@createTime,");
- strSql.Append("createBy=@createBy,");
- strSql.Append("callState=@callState,");
- strSql.Append("salesOffice=@salesOffice,");
- strSql.Append("broadbandAccount=@broadbandAccount,");
- strSql.Append("accessTime=@accessTime,");
- strSql.Append("channel=@channel,");
- strSql.Append("service=@service,");
- strSql.Append("package=@package,");
- strSql.Append("fusion=@fusion,");
- strSql.Append("phoneState=@phoneState,");
- strSql.Append("orderNature=@orderNature,");
- strSql.Append("address=@address,");
- strSql.Append("result1=@result1,");
- strSql.Append("result2=@result2,");
- strSql.Append("result3=@result3,");
- strSql.Append("isconnect=@isconnect,");
- strSql.Append("calltime=@calltime");
- strSql.Append(" where F_Id=@F_Id");
- SqlParameter[] parameters = {
- new SqlParameter("@taskId", SqlDbType.Int,4),
- new SqlParameter("@fix", SqlDbType.NVarChar,10),
- new SqlParameter("@phone", SqlDbType.NVarChar,50),
- new SqlParameter("@createTime", SqlDbType.DateTime),
- new SqlParameter("@createBy", SqlDbType.NVarChar,50),
- new SqlParameter("@callState", SqlDbType.Int,4),
- new SqlParameter("@salesOffice", SqlDbType.NVarChar,100),
- new SqlParameter("@broadbandAccount", SqlDbType.NVarChar,100),
- new SqlParameter("@accessTime",SqlDbType.NVarChar,50),
- new SqlParameter("@channel", SqlDbType.NVarChar,100),
- new SqlParameter("@service", SqlDbType.NVarChar,100),
- new SqlParameter("@package", SqlDbType.NVarChar,200),
- new SqlParameter("@fusion", SqlDbType.NVarChar,50),
- new SqlParameter("@phoneState", SqlDbType.NVarChar,50),
- new SqlParameter("@orderNature", SqlDbType.NVarChar,50),
- new SqlParameter("@address", SqlDbType.NVarChar,500),
- new SqlParameter("@result1", SqlDbType.NVarChar,50),
- new SqlParameter("@result2", SqlDbType.NVarChar,50),
- new SqlParameter("@result3", SqlDbType.NVarChar,50),
- new SqlParameter("@isconnect", SqlDbType.Int,4),
- new SqlParameter("@calltime", SqlDbType.DateTime),
- new SqlParameter("@F_Id", SqlDbType.Int,4)};
- parameters[0].Value = model.taskId;
- parameters[1].Value = model.fix;
- parameters[2].Value = model.phone;
- parameters[3].Value = model.createTime;
- parameters[4].Value = model.createBy;
- parameters[5].Value = model.callState;
- parameters[6].Value = model.salesOffice;
- parameters[7].Value = model.broadbandAccount;
- parameters[8].Value = model.accessTime;
- parameters[9].Value = model.channel;
- parameters[10].Value = model.service;
- parameters[11].Value = model.package;
- parameters[12].Value = model.fusion;
- parameters[13].Value = model.phoneState;
- parameters[14].Value = model.orderNature;
- parameters[15].Value = model.address;
- parameters[16].Value = model.result1;
- parameters[17].Value = model.result2;
- parameters[18].Value = model.result3;
- parameters[19].Value = model.isconnect;
- parameters[20].Value = model.calltime;
- parameters[21].Value = model.F_Id;
- int rows=DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 删除一条数据
- /// </summary>
- public bool Delete(int F_Id)
- {
-
- StringBuilder strSql=new StringBuilder();
- strSql.Append("delete from T_AutomaticCall_Phone ");
- strSql.Append(" where F_Id=@F_Id");
- SqlParameter[] parameters = {
- new SqlParameter("@F_Id", SqlDbType.Int,4)
- };
- parameters[0].Value = F_Id;
- int rows=DbHelperSQL.ExecuteSql(strSql.ToString(),parameters);
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 批量删除数据
- /// </summary>
- public bool DeleteList(string F_Idlist )
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("delete from T_AutomaticCall_Phone ");
- strSql.Append(" where F_Id in ("+F_Idlist + ") ");
- int rows=DbHelperSQL.ExecuteSql(strSql.ToString());
- if (rows > 0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- /// <summary>
- /// 得到一个对象实体
- /// </summary>
- public CallCenterApi.Model.T_AutomaticCall_Phone GetModel(int F_Id)
- {
-
- StringBuilder strSql=new StringBuilder();
- strSql.Append("select top 1 F_Id,taskId,fix,phone,createTime,createBy,callState,salesOffice,broadbandAccount,accessTime,channel,service,package,fusion,phoneState,orderNature,address,result1,result2,result3,isconnect,calltime from T_AutomaticCall_Phone ");
- strSql.Append(" where F_Id=@F_Id");
- SqlParameter[] parameters = {
- new SqlParameter("@F_Id", SqlDbType.Int,4)
- };
- parameters[0].Value = F_Id;
- CallCenterApi.Model.T_AutomaticCall_Phone model=new CallCenterApi.Model.T_AutomaticCall_Phone();
- DataSet ds=DbHelperSQL.Query(strSql.ToString(),parameters);
- if(ds.Tables[0].Rows.Count>0)
- {
- return DataRowToModel(ds.Tables[0].Rows[0]);
- }
- else
- {
- return null;
- }
- }
- /// <summary>
- /// 得到一个对象实体
- /// </summary>
- public CallCenterApi.Model.T_AutomaticCall_Phone DataRowToModel(DataRow row)
- {
- CallCenterApi.Model.T_AutomaticCall_Phone model=new CallCenterApi.Model.T_AutomaticCall_Phone();
- if (row != null)
- {
- if(row["F_Id"]!=null && row["F_Id"].ToString()!="")
- {
- model.F_Id=int.Parse(row["F_Id"].ToString());
- }
- if(row["taskId"]!=null && row["taskId"].ToString()!="")
- {
- model.taskId=int.Parse(row["taskId"].ToString());
- }
- if(row["fix"]!=null)
- {
- model.fix=row["fix"].ToString();
- }
- if(row["phone"]!=null)
- {
- model.phone=row["phone"].ToString();
- }
- if(row["createTime"]!=null && row["createTime"].ToString()!="")
- {
- model.createTime=DateTime.Parse(row["createTime"].ToString());
- }
- if(row["createBy"]!=null)
- {
- model.createBy=row["createBy"].ToString();
- }
- if(row["callState"]!=null && row["callState"].ToString()!="")
- {
- model.callState=int.Parse(row["callState"].ToString());
- }
- if(row["salesOffice"]!=null)
- {
- model.salesOffice=row["salesOffice"].ToString();
- }
- if(row["broadbandAccount"]!=null)
- {
- model.broadbandAccount=row["broadbandAccount"].ToString();
- }
- if(row["accessTime"]!=null && row["accessTime"].ToString()!="")
- {
- model.accessTime=row["accessTime"].ToString();
- }
- if(row["channel"]!=null)
- {
- model.channel=row["channel"].ToString();
- }
- if(row["service"]!=null)
- {
- model.service=row["service"].ToString();
- }
- if(row["package"]!=null)
- {
- model.package=row["package"].ToString();
- }
- if(row["fusion"]!=null)
- {
- model.fusion=row["fusion"].ToString();
- }
- if(row["phoneState"]!=null)
- {
- model.phoneState=row["phoneState"].ToString();
- }
- if(row["orderNature"]!=null)
- {
- model.orderNature=row["orderNature"].ToString();
- }
- if(row["address"]!=null)
- {
- model.address=row["address"].ToString();
- }
- if(row["result1"]!=null)
- {
- model.result1=row["result1"].ToString();
- }
- if(row["result2"]!=null)
- {
- model.result2=row["result2"].ToString();
- }
- if(row["result3"]!=null)
- {
- model.result3=row["result3"].ToString();
- }
- if(row["isconnect"]!=null && row["isconnect"].ToString()!="")
- {
- model.isconnect=int.Parse(row["isconnect"].ToString());
- }
- if(row["calltime"]!=null && row["calltime"].ToString()!="")
- {
- model.calltime=DateTime.Parse(row["calltime"].ToString());
- }
- }
- return model;
- }
- /// <summary>
- /// 获得数据列表
- /// </summary>
- public DataSet GetList(string strWhere)
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("select F_Id,taskId,fix,phone,createTime,createBy,callState,salesOffice,broadbandAccount,accessTime,channel,service,package,fusion,phoneState,orderNature,address,result1,result2,result3,isconnect,calltime ");
- strSql.Append(" FROM T_AutomaticCall_Phone ");
- if(strWhere.Trim()!="")
- {
- strSql.Append(" where "+strWhere);
- }
- return DbHelperSQL.Query(strSql.ToString());
- }
- /// <summary>
- /// 获得前几行数据
- /// </summary>
- public DataSet GetList(int Top,string strWhere,string filedOrder)
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("select ");
- if(Top>0)
- {
- strSql.Append(" top "+Top.ToString());
- }
- strSql.Append(" F_Id,taskId,fix,phone,createTime,createBy,callState,salesOffice,broadbandAccount,accessTime,channel,service,package,fusion,phoneState,orderNature,address,result1,result2,result3,isconnect,calltime ");
- strSql.Append(" FROM T_AutomaticCall_Phone ");
- if(strWhere.Trim()!="")
- {
- strSql.Append(" where "+strWhere);
- }
- strSql.Append(" order by " + filedOrder);
- return DbHelperSQL.Query(strSql.ToString());
- }
- /// <summary>
- /// 获取记录总数
- /// </summary>
- public int GetRecordCount(string strWhere)
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("select count(1) FROM T_AutomaticCall_Phone ");
- if(strWhere.Trim()!="")
- {
- strSql.Append(" where "+strWhere);
- }
- object obj = DbHelperSQL.GetSingle(strSql.ToString());
- if (obj == null)
- {
- return 0;
- }
- else
- {
- return Convert.ToInt32(obj);
- }
- }
- /// <summary>
- /// 分页获取数据列表
- /// </summary>
- public DataSet GetListByPage(string strWhere, string orderby, int startIndex, int endIndex)
- {
- StringBuilder strSql=new StringBuilder();
- strSql.Append("SELECT * FROM ( ");
- strSql.Append(" SELECT ROW_NUMBER() OVER (");
- if (!string.IsNullOrEmpty(orderby.Trim()))
- {
- strSql.Append("order by T." + orderby );
- }
- else
- {
- strSql.Append("order by T.F_Id desc");
- }
- strSql.Append(")AS Row, T.* from T_AutomaticCall_Phone T ");
- if (!string.IsNullOrEmpty(strWhere.Trim()))
- {
- strSql.Append(" WHERE " + strWhere);
- }
- strSql.Append(" ) TT");
- strSql.AppendFormat(" WHERE TT.Row between {0} and {1}", startIndex, endIndex);
- return DbHelperSQL.Query(strSql.ToString());
- }
- /*
- /// <summary>
- /// 分页获取数据列表
- /// </summary>
- public DataSet GetList(int PageSize,int PageIndex,string strWhere)
- {
- SqlParameter[] parameters = {
- new SqlParameter("@tblName", SqlDbType.VarChar, 255),
- new SqlParameter("@fldName", SqlDbType.VarChar, 255),
- new SqlParameter("@PageSize", SqlDbType.Int),
- new SqlParameter("@PageIndex", SqlDbType.Int),
- new SqlParameter("@IsReCount", SqlDbType.Bit),
- new SqlParameter("@OrderType", SqlDbType.Bit),
- new SqlParameter("@strWhere", SqlDbType.VarChar,1000),
- };
- parameters[0].Value = "T_AutomaticCall_Phone";
- parameters[1].Value = "F_Id";
- parameters[2].Value = PageSize;
- parameters[3].Value = PageIndex;
- parameters[4].Value = 0;
- parameters[5].Value = 0;
- parameters[6].Value = strWhere;
- return DbHelperSQL.RunProcedure("UP_GetRecordByPage",parameters,"ds");
- }*/
- #endregion BasicMethod
- #region ExtensionMethod
- public DataSet exportList(string strWhere)
- {
- //// "电话号码", "营业部","用户分类","问题1","结果1","问题2","结果2","问题3","结果3","是否接通","呼叫时间"
- //StringBuilder strSql = new StringBuilder();
- StringBuilder tablenew = new StringBuilder();
- tablenew.Append("select * from (select salesOffice, orderNature,phone,question1, callState,");
- tablenew.Append("( case when isconnect = 1 then case result1 when 1 then '1' when 2 then '2' when 3 then '3' else '未评价' end else '' end ) result1,question2, ");
- tablenew.Append(" (case when isconnect = 1 then case result2 when 1 then '1' when 2 then '2' when 3 then '3' else '未评价' end else '' end ) result2,question3,");
- // tablenew.Append(" case when question3 IS NULL then '' else case result3 when 1 then '十分满意' when 2 then '满意' when 3 then '不满意' else '未评价' end end else '' end result3 ");
- tablenew.Append("(case when question3 IS NULL then '' else case when isconnect = 1 then case result3 when 1 then '1' when 2 then '2' when 3 then '3' else '未评价' end else '' end end ) result3 ,");
- tablenew.Append(" (case when isconnect =1 then '是' else '否' end ) connect, calltime,phone.taskId,isconnect,Isnull(phone.totalTime,0) totalTime from T_AutomaticCall_Phone phone left join T_AutomaticCall_Task task on phone.taskid = task.taskid) as t");
- if (strWhere.Trim() != "")
- {
- tablenew.Append(" where " + strWhere);
- }
- tablenew.Append(" order by calltime desc");
- return DbHelperSQL.Query(tablenew.ToString());
- }
- #endregion ExtensionMethod
- }
- }
|