/// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(AMS.Model.View_PrintTemplate model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into View_PrintTemplate(");
            strSql.Append("CustomerName,Name,Number,Template,EffectDate,EndDate,Describe,CustomerNo,CustomerLinkWay,CustomerDescribe,OperatorRemark,OperatorName,OperatorBranchName,OperatorPwd,OperatorLoginId)");
            strSql.Append(" values (");
            strSql.Append("@CustomerName,@Name,@Number,@Template,@EffectDate,@EndDate,@Describe,@CustomerNo,@CustomerLinkWay,@CustomerDescribe,@OperatorRemark,@OperatorName,@OperatorBranchName,@OperatorPwd,@OperatorLoginId)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@CustomerName",       SqlDbType.NVarChar,   20),
                new SqlParameter("@Name",               SqlDbType.NVarChar,   20),
                new SqlParameter("@Number",             SqlDbType.NVarChar,   20),
                new SqlParameter("@Template",           SqlDbType.Text),
                new SqlParameter("@EffectDate",         SqlDbType.DateTime),
                new SqlParameter("@EndDate",            SqlDbType.DateTime),
                new SqlParameter("@Describe",           SqlDbType.NVarChar,  200),
                new SqlParameter("@CustomerNo",         SqlDbType.NVarChar,   20),
                new SqlParameter("@CustomerLinkWay",    SqlDbType.NVarChar,  500),
                new SqlParameter("@CustomerDescribe",   SqlDbType.NVarChar,  500),
                new SqlParameter("@OperatorRemark",     SqlDbType.NVarChar,   50),
                new SqlParameter("@OperatorName",       SqlDbType.NVarChar,   30),
                new SqlParameter("@OperatorBranchName", SqlDbType.NVarChar,   30),
                new SqlParameter("@OperatorPwd",        SqlDbType.NVarChar,   30),
                new SqlParameter("@OperatorLoginId",    SqlDbType.NVarChar, 30)
            };
            parameters[0].Value  = model.CustomerName;
            parameters[1].Value  = model.Name;
            parameters[2].Value  = model.Number;
            parameters[3].Value  = model.Template;
            parameters[4].Value  = model.EffectDate;
            parameters[5].Value  = model.EndDate;
            parameters[6].Value  = model.Describe;
            parameters[7].Value  = model.CustomerNo;
            parameters[8].Value  = model.CustomerLinkWay;
            parameters[9].Value  = model.CustomerDescribe;
            parameters[10].Value = model.OperatorRemark;
            parameters[11].Value = model.OperatorName;
            parameters[12].Value = model.OperatorBranchName;
            parameters[13].Value = model.OperatorPwd;
            parameters[14].Value = model.OperatorLoginId;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(AMS.Model.View_PrintTemplate model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update View_PrintTemplate set ");
            strSql.Append("CustomerName=@CustomerName,");
            strSql.Append("Name=@Name,");
            strSql.Append("Number=@Number,");
            strSql.Append("Template=@Template,");
            strSql.Append("EffectDate=@EffectDate,");
            strSql.Append("EndDate=@EndDate,");
            strSql.Append("Describe=@Describe,");
            strSql.Append("CustomerNo=@CustomerNo,");
            strSql.Append("CustomerLinkWay=@CustomerLinkWay,");
            strSql.Append("CustomerDescribe=@CustomerDescribe,");
            strSql.Append("OperatorRemark=@OperatorRemark,");
            strSql.Append("OperatorName=@OperatorName,");
            strSql.Append("OperatorBranchName=@OperatorBranchName,");
            strSql.Append("OperatorPwd=@OperatorPwd,");
            strSql.Append("OperatorLoginId=@OperatorLoginId");
            strSql.Append(" where ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@CustomerName",       SqlDbType.NVarChar,   20),
                new SqlParameter("@Name",               SqlDbType.NVarChar,   20),
                new SqlParameter("@Number",             SqlDbType.NVarChar,   20),
                new SqlParameter("@Template",           SqlDbType.Text),
                new SqlParameter("@EffectDate",         SqlDbType.DateTime),
                new SqlParameter("@EndDate",            SqlDbType.DateTime),
                new SqlParameter("@Describe",           SqlDbType.NVarChar,  200),
                new SqlParameter("@CustomerNo",         SqlDbType.NVarChar,   20),
                new SqlParameter("@CustomerLinkWay",    SqlDbType.NVarChar,  500),
                new SqlParameter("@CustomerDescribe",   SqlDbType.NVarChar,  500),
                new SqlParameter("@OperatorRemark",     SqlDbType.NVarChar,   50),
                new SqlParameter("@OperatorName",       SqlDbType.NVarChar,   30),
                new SqlParameter("@OperatorBranchName", SqlDbType.NVarChar,   30),
                new SqlParameter("@OperatorPwd",        SqlDbType.NVarChar,   30),
                new SqlParameter("@OperatorLoginId",    SqlDbType.NVarChar, 30)
            };
            parameters[0].Value  = model.CustomerName;
            parameters[1].Value  = model.Name;
            parameters[2].Value  = model.Number;
            parameters[3].Value  = model.Template;
            parameters[4].Value  = model.EffectDate;
            parameters[5].Value  = model.EndDate;
            parameters[6].Value  = model.Describe;
            parameters[7].Value  = model.CustomerNo;
            parameters[8].Value  = model.CustomerLinkWay;
            parameters[9].Value  = model.CustomerDescribe;
            parameters[10].Value = model.OperatorRemark;
            parameters[11].Value = model.OperatorName;
            parameters[12].Value = model.OperatorBranchName;
            parameters[13].Value = model.OperatorPwd;
            parameters[14].Value = model.OperatorLoginId;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public AMS.Model.View_PrintTemplate GetModel()
        {
            //该表无主键信息,请自定义主键/条件字段
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 CustomerName,Name,Number,Template,EffectDate,EndDate,Describe,CustomerNo,CustomerLinkWay,CustomerDescribe,OperatorRemark,OperatorName,OperatorBranchName,OperatorPwd,OperatorLoginId from View_PrintTemplate ");
            strSql.Append(" where ");
            SqlParameter[] parameters =
            {
            };

            AMS.Model.View_PrintTemplate model = new AMS.Model.View_PrintTemplate();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                if (ds.Tables[0].Rows[0]["CustomerName"] != null && ds.Tables[0].Rows[0]["CustomerName"].ToString() != "")
                {
                    model.CustomerName = ds.Tables[0].Rows[0]["CustomerName"].ToString();
                }
                if (ds.Tables[0].Rows[0]["Name"] != null && ds.Tables[0].Rows[0]["Name"].ToString() != "")
                {
                    model.Name = ds.Tables[0].Rows[0]["Name"].ToString();
                }
                if (ds.Tables[0].Rows[0]["Number"] != null && ds.Tables[0].Rows[0]["Number"].ToString() != "")
                {
                    model.Number = ds.Tables[0].Rows[0]["Number"].ToString();
                }
                if (ds.Tables[0].Rows[0]["Template"] != null && ds.Tables[0].Rows[0]["Template"].ToString() != "")
                {
                    model.Template = ds.Tables[0].Rows[0]["Template"].ToString();
                }
                if (ds.Tables[0].Rows[0]["EffectDate"] != null && ds.Tables[0].Rows[0]["EffectDate"].ToString() != "")
                {
                    model.EffectDate = DateTime.Parse(ds.Tables[0].Rows[0]["EffectDate"].ToString());
                }
                if (ds.Tables[0].Rows[0]["EndDate"] != null && ds.Tables[0].Rows[0]["EndDate"].ToString() != "")
                {
                    model.EndDate = DateTime.Parse(ds.Tables[0].Rows[0]["EndDate"].ToString());
                }
                if (ds.Tables[0].Rows[0]["Describe"] != null && ds.Tables[0].Rows[0]["Describe"].ToString() != "")
                {
                    model.Describe = ds.Tables[0].Rows[0]["Describe"].ToString();
                }
                if (ds.Tables[0].Rows[0]["CustomerNo"] != null && ds.Tables[0].Rows[0]["CustomerNo"].ToString() != "")
                {
                    model.CustomerNo = ds.Tables[0].Rows[0]["CustomerNo"].ToString();
                }
                if (ds.Tables[0].Rows[0]["CustomerLinkWay"] != null && ds.Tables[0].Rows[0]["CustomerLinkWay"].ToString() != "")
                {
                    model.CustomerLinkWay = ds.Tables[0].Rows[0]["CustomerLinkWay"].ToString();
                }
                if (ds.Tables[0].Rows[0]["CustomerDescribe"] != null && ds.Tables[0].Rows[0]["CustomerDescribe"].ToString() != "")
                {
                    model.CustomerDescribe = ds.Tables[0].Rows[0]["CustomerDescribe"].ToString();
                }
                if (ds.Tables[0].Rows[0]["OperatorRemark"] != null && ds.Tables[0].Rows[0]["OperatorRemark"].ToString() != "")
                {
                    model.OperatorRemark = ds.Tables[0].Rows[0]["OperatorRemark"].ToString();
                }
                if (ds.Tables[0].Rows[0]["OperatorName"] != null && ds.Tables[0].Rows[0]["OperatorName"].ToString() != "")
                {
                    model.OperatorName = ds.Tables[0].Rows[0]["OperatorName"].ToString();
                }
                if (ds.Tables[0].Rows[0]["OperatorBranchName"] != null && ds.Tables[0].Rows[0]["OperatorBranchName"].ToString() != "")
                {
                    model.OperatorBranchName = ds.Tables[0].Rows[0]["OperatorBranchName"].ToString();
                }
                if (ds.Tables[0].Rows[0]["OperatorPwd"] != null && ds.Tables[0].Rows[0]["OperatorPwd"].ToString() != "")
                {
                    model.OperatorPwd = ds.Tables[0].Rows[0]["OperatorPwd"].ToString();
                }
                if (ds.Tables[0].Rows[0]["OperatorLoginId"] != null && ds.Tables[0].Rows[0]["OperatorLoginId"].ToString() != "")
                {
                    model.OperatorLoginId = ds.Tables[0].Rows[0]["OperatorLoginId"].ToString();
                }
                return(model);
            }
            else
            {
                return(null);
            }
        }