Пример #1
0
        /// <summary>
        /// 添加设备使用情况记录
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public static bool AddTerminalUsageStatistics(TerminalUsageStatistics model)
        {
            IWCFService.ISeatManageService seatService = WcfAccessProxy.ServiceProxy.CreateChannelSeatManageService();
            bool error = false;

            try
            {
                return(seatService.AddTerminalUsageStatistics(model));
            }
            catch (Exception ex)
            {
                error = true;
                WriteLog.Write("添加设备使用情况记录失败:" + ex.Message);
                return(false);
            }
            finally
            {
                ICommunicationObject ICommObjectService = seatService as ICommunicationObject;
                try
                {
                    if (ICommObjectService.State == CommunicationState.Faulted)
                    {
                        ICommObjectService.Abort();
                    }
                    else
                    {
                        ICommObjectService.Close();
                    }
                }
                catch
                {
                    ICommObjectService.Abort();
                }
            }
        }
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(TerminalUsageStatistics model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into T_SM_TerminalUsageStatistics(");
            strSql.Append("TerminalNo,StatisticsDate,RushCardCount,TodayPrintCount,IsChangePage,NowPagePrintCount,BeforePagePrintCount,SelectSeatCount,ReselectSeatCount,CheckBespeakCount,WaitSeatCount,ShortLeaveCount,ComeBackCount,ContinueTimeCount,LeaveCount)");
            strSql.Append(" values (");
            strSql.Append("@TerminalNo,@StatisticsDate,@RushCardCount,@TodayPrintCount,@IsChangePage,@NowPagePrintCount,@BeforePagePrintCount,@SelectSeatCount,@ReselectSeatCount,@CheckBespeakCount,@WaitSeatCount,@ShortLeaveCount,@ComeBackCount,@ContinueTimeCount,@LeaveCount)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@TerminalNo",           SqlDbType.NVarChar,  50),
                new SqlParameter("@StatisticsDate",       SqlDbType.DateTime),
                new SqlParameter("@RushCardCount",        SqlDbType.Int,        4),
                new SqlParameter("@TodayPrintCount",      SqlDbType.Int,        4),
                new SqlParameter("@IsChangePage",         SqlDbType.Int,        4),
                new SqlParameter("@NowPagePrintCount",    SqlDbType.Int,        4),
                new SqlParameter("@BeforePagePrintCount", SqlDbType.Int,        4),
                new SqlParameter("@SelectSeatCount",      SqlDbType.Int,        4),
                new SqlParameter("@ReselectSeatCount",    SqlDbType.Int,        4),
                new SqlParameter("@CheckBespeakCount",    SqlDbType.Int,        4),
                new SqlParameter("@WaitSeatCount",        SqlDbType.Int,        4),
                new SqlParameter("@ShortLeaveCount",      SqlDbType.Int,        4),
                new SqlParameter("@ComeBackCount",        SqlDbType.Int,        4),
                new SqlParameter("@ContinueTimeCount",    SqlDbType.Int,        4),
                new SqlParameter("@LeaveCount",           SqlDbType.Int, 4)
            };
            parameters[0].Value  = model.TerminalNo;
            parameters[1].Value  = model.StatisticsDate;
            parameters[2].Value  = model.RushCardCount;
            parameters[3].Value  = model.TodayPrintCount;
            parameters[4].Value  = model.IsChangePage;
            parameters[5].Value  = model.NowPagePrintCount;
            parameters[6].Value  = model.BeforePagePrintCount;
            parameters[7].Value  = model.SelectSeatCount;
            parameters[8].Value  = model.ReselectSeatCount;
            parameters[9].Value  = model.CheckBespeakCount;
            parameters[10].Value = model.WaitSeatCount;
            parameters[11].Value = model.ShortLeaveCount;
            parameters[12].Value = model.ComeBackCount;
            parameters[13].Value = model.ContinueTimeCount;
            parameters[14].Value = model.LeaveCount;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
 /// <summary>
 /// 添加设备使用情况记录
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public bool AddTerminalUsageStatistics(TerminalUsageStatistics model)
 {
     try
     {
         return(t_sm_TerminalUsageStatistics.Add(model) > 0);
     }
     catch (Exception ex)
     {
         WriteLog.Write("WCF数据服务:执行遇到异常" + ex.Message);
         throw ex;
     }
 }
        /// <summary>
        /// 添加设备使用情况记录
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public static bool AddTerminalUsageStatistics(TerminalUsageStatistics model)
        {
            IWCFService.ISeatManageService seatService = new WcfServiceForSeatManage.SeatManageDateService();
            bool error = false;

            try
            {
                return(seatService.AddTerminalUsageStatistics(model));
            }
            catch (Exception ex)
            {
                error = true;
                WriteLog.Write("添加设备使用情况记录失败:" + ex.Message);
                return(false);
            }
        }
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public TerminalUsageStatistics GetModel(int id)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 id,TerminalNo,StatisticsDate,RushCardCount,TodayPrintCount,IsChangePage,NowPagePrintCount,BeforePagePrintCount,SelectSeatCount,ReselectSeatCount,CheckBespeakCount,WaitSeatCount,ShortLeaveCount,ComeBackCount,ContinueTimeCount,LeaveCount from T_SM_TerminalUsageStatistics ");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id", SqlDbType.Int, 4)
            };
            parameters[0].Value = id;

            TerminalUsageStatistics model = new TerminalUsageStatistics();
            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 TerminalUsageStatistics DataRowToModel(DataRow row)
        {
            TerminalUsageStatistics model = new TerminalUsageStatistics();

            if (row != null)
            {
                if (row["id"] != null && row["id"].ToString() != "")
                {
                    model.id = int.Parse(row["id"].ToString());
                }
                if (row["TerminalNo"] != null)
                {
                    model.TerminalNo = row["TerminalNo"].ToString();
                }
                if (row["StatisticsDate"] != null && row["StatisticsDate"].ToString() != "")
                {
                    model.StatisticsDate = DateTime.Parse(row["StatisticsDate"].ToString());
                }
                if (row["RushCardCount"] != null && row["RushCardCount"].ToString() != "")
                {
                    model.RushCardCount = int.Parse(row["RushCardCount"].ToString());
                }
                if (row["TodayPrintCount"] != null && row["TodayPrintCount"].ToString() != "")
                {
                    model.TodayPrintCount = int.Parse(row["TodayPrintCount"].ToString());
                }
                if (row["IsChangePage"] != null && row["IsChangePage"].ToString() != "")
                {
                    model.IsChangePage = int.Parse(row["IsChangePage"].ToString());
                }
                if (row["NowPagePrintCount"] != null && row["NowPagePrintCount"].ToString() != "")
                {
                    model.NowPagePrintCount = int.Parse(row["NowPagePrintCount"].ToString());
                }
                if (row["BeforePagePrintCount"] != null && row["BeforePagePrintCount"].ToString() != "")
                {
                    model.BeforePagePrintCount = int.Parse(row["BeforePagePrintCount"].ToString());
                }
                if (row["SelectSeatCount"] != null && row["SelectSeatCount"].ToString() != "")
                {
                    model.SelectSeatCount = int.Parse(row["SelectSeatCount"].ToString());
                }
                if (row["ReselectSeatCount"] != null && row["ReselectSeatCount"].ToString() != "")
                {
                    model.ReselectSeatCount = int.Parse(row["ReselectSeatCount"].ToString());
                }
                if (row["CheckBespeakCount"] != null && row["CheckBespeakCount"].ToString() != "")
                {
                    model.CheckBespeakCount = int.Parse(row["CheckBespeakCount"].ToString());
                }
                if (row["WaitSeatCount"] != null && row["WaitSeatCount"].ToString() != "")
                {
                    model.WaitSeatCount = int.Parse(row["WaitSeatCount"].ToString());
                }
                if (row["ShortLeaveCount"] != null && row["ShortLeaveCount"].ToString() != "")
                {
                    model.ShortLeaveCount = int.Parse(row["ShortLeaveCount"].ToString());
                }
                if (row["ComeBackCount"] != null && row["ComeBackCount"].ToString() != "")
                {
                    model.ComeBackCount = int.Parse(row["ComeBackCount"].ToString());
                }
                if (row["ContinueTimeCount"] != null && row["ContinueTimeCount"].ToString() != "")
                {
                    model.ContinueTimeCount = int.Parse(row["ContinueTimeCount"].ToString());
                }
                if (row["LeaveCount"] != null && row["LeaveCount"].ToString() != "")
                {
                    model.LeaveCount = int.Parse(row["LeaveCount"].ToString());
                }
            }
            return(model);
        }
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(TerminalUsageStatistics model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update T_SM_TerminalUsageStatistics set ");
            strSql.Append("TerminalNo=@TerminalNo,");
            strSql.Append("StatisticsDate=@StatisticsDate,");
            strSql.Append("RushCardCount=@RushCardCount,");
            strSql.Append("TodayPrintCount=@TodayPrintCount,");
            strSql.Append("IsChangePage=@IsChangePage,");
            strSql.Append("NowPagePrintCount=@NowPagePrintCount,");
            strSql.Append("BeforePagePrintCount=@BeforePagePrintCount,");
            strSql.Append("SelectSeatCount=@SelectSeatCount,");
            strSql.Append("ReselectSeatCount=@ReselectSeatCount,");
            strSql.Append("CheckBespeakCount=@CheckBespeakCount,");
            strSql.Append("WaitSeatCount=@WaitSeatCount,");
            strSql.Append("ShortLeaveCount=@ShortLeaveCount,");
            strSql.Append("ComeBackCount=@ComeBackCount,");
            strSql.Append("ContinueTimeCount=@ContinueTimeCount,");
            strSql.Append("LeaveCount=@LeaveCount");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@TerminalNo",           SqlDbType.NVarChar,  50),
                new SqlParameter("@StatisticsDate",       SqlDbType.DateTime),
                new SqlParameter("@RushCardCount",        SqlDbType.Int,        4),
                new SqlParameter("@TodayPrintCount",      SqlDbType.Int,        4),
                new SqlParameter("@IsChangePage",         SqlDbType.Int,        4),
                new SqlParameter("@NowPagePrintCount",    SqlDbType.Int,        4),
                new SqlParameter("@BeforePagePrintCount", SqlDbType.Int,        4),
                new SqlParameter("@SelectSeatCount",      SqlDbType.Int,        4),
                new SqlParameter("@ReselectSeatCount",    SqlDbType.Int,        4),
                new SqlParameter("@CheckBespeakCount",    SqlDbType.Int,        4),
                new SqlParameter("@WaitSeatCount",        SqlDbType.Int,        4),
                new SqlParameter("@ShortLeaveCount",      SqlDbType.Int,        4),
                new SqlParameter("@ComeBackCount",        SqlDbType.Int,        4),
                new SqlParameter("@ContinueTimeCount",    SqlDbType.Int,        4),
                new SqlParameter("@LeaveCount",           SqlDbType.Int,        4),
                new SqlParameter("@id",                   SqlDbType.Int, 4)
            };
            parameters[0].Value  = model.TerminalNo;
            parameters[1].Value  = model.StatisticsDate;
            parameters[2].Value  = model.RushCardCount;
            parameters[3].Value  = model.TodayPrintCount;
            parameters[4].Value  = model.IsChangePage;
            parameters[5].Value  = model.NowPagePrintCount;
            parameters[6].Value  = model.BeforePagePrintCount;
            parameters[7].Value  = model.SelectSeatCount;
            parameters[8].Value  = model.ReselectSeatCount;
            parameters[9].Value  = model.CheckBespeakCount;
            parameters[10].Value = model.WaitSeatCount;
            parameters[11].Value = model.ShortLeaveCount;
            parameters[12].Value = model.ComeBackCount;
            parameters[13].Value = model.ContinueTimeCount;
            parameters[14].Value = model.LeaveCount;
            parameters[15].Value = model.id;

            int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }