Exemplo n.º 1
0
        protected void GetEditExamItemInfo(int ID_ExamItem, ref VelocityContext vltContext)
        {
            PEIS.Model.BusExamItem model = PEIS.BLL.BusExamItem.Instance.GetModel(ID_ExamItem);
            vltContext.Put("ID_ExamItem", model.ID_ExamItem);
            vltContext.Put("ExamItemName", model.ExamItemName);
            vltContext.Put("ID_Section", model.ID_Section);
            vltContext.Put("GetResultWay", model.GetResultWay);
            vltContext.Put("ExamItemCode", model.ExamItemCode);
            vltContext.Put("Is_LisValueNull", model.Is_LisValueNull);
            vltContext.Put("Is_EntrySectSum", model.Is_EntrySectSum);
            vltContext.Put("EntrySectSumLevel", model.EntrySectSumLevel);
            vltContext.Put("Is_AutoCalc", model.Is_AutoCalc);
            vltContext.Put("CalcExpression", model.CalcExpression);
            vltContext.Put("SymCols", model.SymCols);
            vltContext.Put("TextboxRows", model.TextboxRows);
            vltContext.Put("Is_SameRow", model.Is_SameRow);
            vltContext.Put("ExamItemUnit", model.ExamItemUnit);
            vltContext.Put("MaleLoLimit", model.MaleLoLimit);
            vltContext.Put("MaleHiLimit", model.MaleHiLimit);
            vltContext.Put("FemaleLoLimit", model.FemaleLoLimit);
            vltContext.Put("FemaleHiLimit", model.FemaleHiLimit);
            vltContext.Put("Is_SymMultiValue", model.Is_SymMultiValue);
            vltContext.Put("Forsex", model.Forsex);
            vltContext.Put("Note", model.Note);
            vltContext.Put("DispOrder", model.DispOrder);
            vltContext.Put("AbbrExamName", model.AbbrExamName);
            vltContext.Put("Is_ExamItemNonPrintInReport", model.Is_ExamItemNonPrintInReport);
            string sectionName = CommonSystemInfo.Instance.GetSectionName(int.Parse(model.ID_Section.ToString()));

            vltContext.Put("SectionName", sectionName);
        }
Exemplo n.º 2
0
        public List <PEIS.Model.BusExamItem> DataTableToList(DataTable dt)
        {
            List <PEIS.Model.BusExamItem> list = new List <PEIS.Model.BusExamItem>();
            int count = dt.Rows.Count;

            if (count > 0)
            {
                for (int i = 0; i < count; i++)
                {
                    PEIS.Model.BusExamItem busExamItem = new PEIS.Model.BusExamItem();
                    if (dt.Rows[i]["ID_ExamItem"].ToString() != "")
                    {
                        busExamItem.ID_ExamItem = int.Parse(dt.Rows[i]["ID_ExamItem"].ToString());
                    }
                    busExamItem.ExamItemName = dt.Rows[i]["ExamItemName"].ToString();
                    busExamItem.GetResultWay = dt.Rows[i]["GetResultWay"].ToString();
                    busExamItem.ExamItemCode = dt.Rows[i]["ExamItemCode"].ToString();
                    if (dt.Rows[i]["ID_Section"].ToString() != "")
                    {
                        busExamItem.ID_Section = new int?(int.Parse(dt.Rows[i]["ID_Section"].ToString()));
                    }
                    if (dt.Rows[i]["Is_LisValueNull"].ToString() != "")
                    {
                        if (dt.Rows[i]["Is_LisValueNull"].ToString() == "1" || dt.Rows[i]["Is_LisValueNull"].ToString().ToLower() == "true")
                        {
                            busExamItem.Is_LisValueNull = new bool?(true);
                        }
                        else
                        {
                            busExamItem.Is_LisValueNull = new bool?(false);
                        }
                    }
                    if (dt.Rows[i]["Is_EntrySectSum"].ToString() != "")
                    {
                        if (dt.Rows[i]["Is_EntrySectSum"].ToString() == "1" || dt.Rows[i]["Is_EntrySectSum"].ToString().ToLower() == "true")
                        {
                            busExamItem.Is_EntrySectSum = new bool?(true);
                        }
                        else
                        {
                            busExamItem.Is_EntrySectSum = new bool?(false);
                        }
                    }
                    if (dt.Rows[i]["EntrySectSumLevel"].ToString() != "")
                    {
                        busExamItem.EntrySectSumLevel = new int?(int.Parse(dt.Rows[i]["EntrySectSumLevel"].ToString()));
                    }
                    if (dt.Rows[i]["Is_AutoCalc"].ToString() != "")
                    {
                        if (dt.Rows[i]["Is_AutoCalc"].ToString() == "1" || dt.Rows[i]["Is_AutoCalc"].ToString().ToLower() == "true")
                        {
                            busExamItem.Is_AutoCalc = new bool?(true);
                        }
                        else
                        {
                            busExamItem.Is_AutoCalc = new bool?(false);
                        }
                    }
                    busExamItem.CalcExpression = dt.Rows[i]["CalcExpression"].ToString();
                    if (dt.Rows[i]["SymCols"].ToString() != "")
                    {
                        busExamItem.SymCols = new int?(int.Parse(dt.Rows[i]["SymCols"].ToString()));
                    }
                    if (dt.Rows[i]["TextboxRows"].ToString() != "")
                    {
                        busExamItem.TextboxRows = new int?(int.Parse(dt.Rows[i]["TextboxRows"].ToString()));
                    }
                    if (dt.Rows[i]["Is_SameRow"].ToString() != "")
                    {
                        if (dt.Rows[i]["Is_SameRow"].ToString() == "1" || dt.Rows[i]["Is_SameRow"].ToString().ToLower() == "true")
                        {
                            busExamItem.Is_SameRow = new bool?(true);
                        }
                        else
                        {
                            busExamItem.Is_SameRow = new bool?(false);
                        }
                    }
                    busExamItem.ExamItemUnit = dt.Rows[i]["ExamItemUnit"].ToString();
                    if (dt.Rows[i]["MaleHiLimit"].ToString() != "")
                    {
                        busExamItem.MaleHiLimit = new decimal?(decimal.Parse(dt.Rows[i]["MaleHiLimit"].ToString()));
                    }
                    if (dt.Rows[i]["MaleLoLimit"].ToString() != "")
                    {
                        busExamItem.MaleLoLimit = new decimal?(decimal.Parse(dt.Rows[i]["MaleLoLimit"].ToString()));
                    }
                    if (dt.Rows[i]["FemaleHiLimit"].ToString() != "")
                    {
                        busExamItem.FemaleHiLimit = new decimal?(decimal.Parse(dt.Rows[i]["FemaleHiLimit"].ToString()));
                    }
                    if (dt.Rows[i]["FemaleLoLimit"].ToString() != "")
                    {
                        busExamItem.FemaleLoLimit = new decimal?(decimal.Parse(dt.Rows[i]["FemaleLoLimit"].ToString()));
                    }
                    if (dt.Rows[i]["Is_SymMultiValue"].ToString() != "")
                    {
                        if (dt.Rows[i]["Is_SymMultiValue"].ToString() == "1" || dt.Rows[i]["Is_SymMultiValue"].ToString().ToLower() == "true")
                        {
                            busExamItem.Is_SymMultiValue = new bool?(true);
                        }
                        else
                        {
                            busExamItem.Is_SymMultiValue = new bool?(false);
                        }
                    }
                    busExamItem.InputCode = dt.Rows[i]["InputCode"].ToString();
                    if (dt.Rows[i]["DispOrder"].ToString() != "")
                    {
                        busExamItem.DispOrder = new int?(int.Parse(dt.Rows[i]["DispOrder"].ToString()));
                    }
                    busExamItem.Note = dt.Rows[i]["Note"].ToString();
                    if (dt.Rows[i]["Forsex"].ToString() != "")
                    {
                        busExamItem.Forsex = new int?(int.Parse(dt.Rows[i]["Forsex"].ToString()));
                    }
                    if (dt.Rows[i]["Is_ExamItemNonPrintInReport"].ToString() != "")
                    {
                        if (dt.Rows[i]["Is_ExamItemNonPrintInReport"].ToString() == "1" || dt.Rows[i]["Is_ExamItemNonPrintInReport"].ToString().ToLower() == "true")
                        {
                            busExamItem.Is_ExamItemNonPrintInReport = new bool?(true);
                        }
                        else
                        {
                            busExamItem.Is_ExamItemNonPrintInReport = new bool?(false);
                        }
                    }
                    if (dt.Rows[i]["ID_ExamItemGroup"].ToString() != "")
                    {
                        busExamItem.ID_ExamItemGroup = new int?(int.Parse(dt.Rows[i]["ID_ExamItemGroup"].ToString()));
                    }
                    busExamItem.AbbrExamName = dt.Rows[i]["AbbrExamName"].ToString();
                    list.Add(busExamItem);
                }
            }
            return(list);
        }
Exemplo n.º 3
0
 public int SaveExamItem(PEIS.Model.BusExamItem ExamItemModel)
 {
     return(CommonConfig.dal.SaveExamItem(ExamItemModel));
 }
Exemplo n.º 4
0
 public bool Update(PEIS.Model.BusExamItem model)
 {
     return(this.dal.Update(model));
 }
Exemplo n.º 5
0
 public int Add(PEIS.Model.BusExamItem model)
 {
     return(this.dal.Add(model));
 }
Exemplo n.º 6
0
        public int Add(PEIS.Model.BusExamItem model)
        {
            StringBuilder stringBuilder = new StringBuilder();

            stringBuilder.Append("insert into BusExamItem(");
            stringBuilder.Append("ExamItemName,GetResultWay,ExamItemCode,ID_Section,Is_LisValueNull,Is_EntrySectSum,EntrySectSumLevel,Is_AutoCalc,CalcExpression,SymCols,TextboxRows,Is_SameRow,ExamItemUnit,MaleHiLimit,MaleLoLimit,FemaleHiLimit,FemaleLoLimit,Is_SymMultiValue,InputCode,DispOrder,Note,Forsex,Is_ExamItemNonPrintInReport,ID_ExamItemGroup,AbbrExamName)");
            stringBuilder.Append(" values (");
            stringBuilder.Append("@ExamItemName,@GetResultWay,@ExamItemCode,@ID_Section,@Is_LisValueNull,@Is_EntrySectSum,@EntrySectSumLevel,@Is_AutoCalc,@CalcExpression,@SymCols,@TextboxRows,@Is_SameRow,@ExamItemUnit,@MaleHiLimit,@MaleLoLimit,@FemaleHiLimit,@FemaleLoLimit,@Is_SymMultiValue,@InputCode,@DispOrder,@Note,@Forsex,@Is_ExamItemNonPrintInReport,@ID_ExamItemGroup,@AbbrExamName)");
            stringBuilder.Append(";select @@IDENTITY");
            SqlParameter[] array = new SqlParameter[]
            {
                new SqlParameter("@ExamItemName", SqlDbType.VarChar, 50),
                new SqlParameter("@GetResultWay", SqlDbType.VarChar, 2),
                new SqlParameter("@ExamItemCode", SqlDbType.VarChar, 50),
                new SqlParameter("@ID_Section", SqlDbType.Int, 4),
                new SqlParameter("@Is_LisValueNull", SqlDbType.Bit, 1),
                new SqlParameter("@Is_EntrySectSum", SqlDbType.Bit, 1),
                new SqlParameter("@EntrySectSumLevel", SqlDbType.Int, 4),
                new SqlParameter("@Is_AutoCalc", SqlDbType.Bit, 1),
                new SqlParameter("@CalcExpression", SqlDbType.Text),
                new SqlParameter("@SymCols", SqlDbType.Int, 4),
                new SqlParameter("@TextboxRows", SqlDbType.Int, 4),
                new SqlParameter("@Is_SameRow", SqlDbType.Bit, 1),
                new SqlParameter("@ExamItemUnit", SqlDbType.VarChar, 20),
                new SqlParameter("@MaleHiLimit", SqlDbType.Float, 8),
                new SqlParameter("@MaleLoLimit", SqlDbType.Float, 8),
                new SqlParameter("@FemaleHiLimit", SqlDbType.Float, 8),
                new SqlParameter("@FemaleLoLimit", SqlDbType.Float, 8),
                new SqlParameter("@Is_SymMultiValue", SqlDbType.Bit, 1),
                new SqlParameter("@InputCode", SqlDbType.VarChar, 30),
                new SqlParameter("@DispOrder", SqlDbType.Int, 4),
                new SqlParameter("@Note", SqlDbType.VarChar, 20),
                new SqlParameter("@Forsex", SqlDbType.Int, 4),
                new SqlParameter("@Is_ExamItemNonPrintInReport", SqlDbType.Bit, 1),
                new SqlParameter("@ID_ExamItemGroup", SqlDbType.Int, 4),
                new SqlParameter("@AbbrExamName", SqlDbType.VarChar, 60)
            };
            array[0].Value  = model.ExamItemName;
            array[1].Value  = model.GetResultWay;
            array[2].Value  = model.ExamItemCode;
            array[3].Value  = model.ID_Section;
            array[4].Value  = model.Is_LisValueNull;
            array[5].Value  = model.Is_EntrySectSum;
            array[6].Value  = model.EntrySectSumLevel;
            array[7].Value  = model.Is_AutoCalc;
            array[8].Value  = model.CalcExpression;
            array[9].Value  = model.SymCols;
            array[10].Value = model.TextboxRows;
            array[11].Value = model.Is_SameRow;
            array[12].Value = model.ExamItemUnit;
            array[13].Value = model.MaleHiLimit;
            array[14].Value = model.MaleLoLimit;
            array[15].Value = model.FemaleHiLimit;
            array[16].Value = model.FemaleLoLimit;
            array[17].Value = model.Is_SymMultiValue;
            array[18].Value = model.InputCode;
            array[19].Value = model.DispOrder;
            array[20].Value = model.Note;
            array[21].Value = model.Forsex;
            array[22].Value = model.Is_ExamItemNonPrintInReport;
            array[23].Value = model.ID_ExamItemGroup;
            array[24].Value = model.AbbrExamName;
            object single = DbHelperSQL.GetSingle(stringBuilder.ToString(), array);
            int    result;

            if (single == null)
            {
                result = 0;
            }
            else
            {
                result = Convert.ToInt32(single);
            }
            return(result);
        }
Exemplo n.º 7
0
        public PEIS.Model.BusExamItem GetModel(int ID_ExamItem)
        {
            StringBuilder stringBuilder = new StringBuilder();

            stringBuilder.Append("select  top 1 ID_ExamItem,ExamItemName,GetResultWay,ExamItemCode,ID_Section,Is_LisValueNull,Is_EntrySectSum,EntrySectSumLevel,Is_AutoCalc,CalcExpression,SymCols,TextboxRows,Is_SameRow,ExamItemUnit,MaleHiLimit,MaleLoLimit,FemaleHiLimit,FemaleLoLimit,Is_SymMultiValue,InputCode,DispOrder,Note,Forsex,Is_ExamItemNonPrintInReport,ID_ExamItemGroup,AbbrExamName from BusExamItem ");
            stringBuilder.Append(" where ID_ExamItem=@ID_ExamItem");
            SqlParameter[] array = new SqlParameter[]
            {
                new SqlParameter("@ID_ExamItem", SqlDbType.Int, 4)
            };
            array[0].Value = ID_ExamItem;
            PEIS.Model.BusExamItem busExamItem = new PEIS.Model.BusExamItem();
            DataSet dataSet = DbHelperSQL.Query(stringBuilder.ToString(), array);

            PEIS.Model.BusExamItem result;
            if (dataSet.Tables[0].Rows.Count > 0)
            {
                if (dataSet.Tables[0].Rows[0]["ID_ExamItem"].ToString() != "")
                {
                    busExamItem.ID_ExamItem = int.Parse(dataSet.Tables[0].Rows[0]["ID_ExamItem"].ToString());
                }
                busExamItem.ExamItemName = dataSet.Tables[0].Rows[0]["ExamItemName"].ToString();
                busExamItem.GetResultWay = dataSet.Tables[0].Rows[0]["GetResultWay"].ToString();
                busExamItem.ExamItemCode = dataSet.Tables[0].Rows[0]["ExamItemCode"].ToString();
                if (dataSet.Tables[0].Rows[0]["ID_Section"].ToString() != "")
                {
                    busExamItem.ID_Section = new int?(int.Parse(dataSet.Tables[0].Rows[0]["ID_Section"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["Is_LisValueNull"].ToString() != "")
                {
                    if (dataSet.Tables[0].Rows[0]["Is_LisValueNull"].ToString() == "1" || dataSet.Tables[0].Rows[0]["Is_LisValueNull"].ToString().ToLower() == "true")
                    {
                        busExamItem.Is_LisValueNull = new bool?(true);
                    }
                    else
                    {
                        busExamItem.Is_LisValueNull = new bool?(false);
                    }
                }
                if (dataSet.Tables[0].Rows[0]["Is_EntrySectSum"].ToString() != "")
                {
                    if (dataSet.Tables[0].Rows[0]["Is_EntrySectSum"].ToString() == "1" || dataSet.Tables[0].Rows[0]["Is_EntrySectSum"].ToString().ToLower() == "true")
                    {
                        busExamItem.Is_EntrySectSum = new bool?(true);
                    }
                    else
                    {
                        busExamItem.Is_EntrySectSum = new bool?(false);
                    }
                }
                if (dataSet.Tables[0].Rows[0]["EntrySectSumLevel"].ToString() != "")
                {
                    busExamItem.EntrySectSumLevel = new int?(int.Parse(dataSet.Tables[0].Rows[0]["EntrySectSumLevel"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["Is_AutoCalc"].ToString() != "")
                {
                    if (dataSet.Tables[0].Rows[0]["Is_AutoCalc"].ToString() == "1" || dataSet.Tables[0].Rows[0]["Is_AutoCalc"].ToString().ToLower() == "true")
                    {
                        busExamItem.Is_AutoCalc = new bool?(true);
                    }
                    else
                    {
                        busExamItem.Is_AutoCalc = new bool?(false);
                    }
                }
                busExamItem.CalcExpression = dataSet.Tables[0].Rows[0]["CalcExpression"].ToString();
                if (dataSet.Tables[0].Rows[0]["SymCols"].ToString() != "")
                {
                    busExamItem.SymCols = new int?(int.Parse(dataSet.Tables[0].Rows[0]["SymCols"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["TextboxRows"].ToString() != "")
                {
                    busExamItem.TextboxRows = new int?(int.Parse(dataSet.Tables[0].Rows[0]["TextboxRows"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["Is_SameRow"].ToString() != "")
                {
                    if (dataSet.Tables[0].Rows[0]["Is_SameRow"].ToString() == "1" || dataSet.Tables[0].Rows[0]["Is_SameRow"].ToString().ToLower() == "true")
                    {
                        busExamItem.Is_SameRow = new bool?(true);
                    }
                    else
                    {
                        busExamItem.Is_SameRow = new bool?(false);
                    }
                }
                busExamItem.ExamItemUnit = dataSet.Tables[0].Rows[0]["ExamItemUnit"].ToString();
                if (dataSet.Tables[0].Rows[0]["MaleHiLimit"].ToString() != "")
                {
                    busExamItem.MaleHiLimit = new decimal?(decimal.Parse(dataSet.Tables[0].Rows[0]["MaleHiLimit"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["MaleLoLimit"].ToString() != "")
                {
                    busExamItem.MaleLoLimit = new decimal?(decimal.Parse(dataSet.Tables[0].Rows[0]["MaleLoLimit"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["FemaleHiLimit"].ToString() != "")
                {
                    busExamItem.FemaleHiLimit = new decimal?(decimal.Parse(dataSet.Tables[0].Rows[0]["FemaleHiLimit"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["FemaleLoLimit"].ToString() != "")
                {
                    busExamItem.FemaleLoLimit = new decimal?(decimal.Parse(dataSet.Tables[0].Rows[0]["FemaleLoLimit"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["Is_SymMultiValue"].ToString() != "")
                {
                    if (dataSet.Tables[0].Rows[0]["Is_SymMultiValue"].ToString() == "1" || dataSet.Tables[0].Rows[0]["Is_SymMultiValue"].ToString().ToLower() == "true")
                    {
                        busExamItem.Is_SymMultiValue = new bool?(true);
                    }
                    else
                    {
                        busExamItem.Is_SymMultiValue = new bool?(false);
                    }
                }
                busExamItem.InputCode = dataSet.Tables[0].Rows[0]["InputCode"].ToString();
                if (dataSet.Tables[0].Rows[0]["DispOrder"].ToString() != "")
                {
                    busExamItem.DispOrder = new int?(int.Parse(dataSet.Tables[0].Rows[0]["DispOrder"].ToString()));
                }
                busExamItem.Note = dataSet.Tables[0].Rows[0]["Note"].ToString();
                if (dataSet.Tables[0].Rows[0]["Forsex"].ToString() != "")
                {
                    busExamItem.Forsex = new int?(int.Parse(dataSet.Tables[0].Rows[0]["Forsex"].ToString()));
                }
                if (dataSet.Tables[0].Rows[0]["Is_ExamItemNonPrintInReport"].ToString() != "")
                {
                    if (dataSet.Tables[0].Rows[0]["Is_ExamItemNonPrintInReport"].ToString() == "1" || dataSet.Tables[0].Rows[0]["Is_ExamItemNonPrintInReport"].ToString().ToLower() == "true")
                    {
                        busExamItem.Is_ExamItemNonPrintInReport = new bool?(true);
                    }
                    else
                    {
                        busExamItem.Is_ExamItemNonPrintInReport = new bool?(false);
                    }
                }
                if (dataSet.Tables[0].Rows[0]["ID_ExamItemGroup"].ToString() != "")
                {
                    busExamItem.ID_ExamItemGroup = new int?(int.Parse(dataSet.Tables[0].Rows[0]["ID_ExamItemGroup"].ToString()));
                }
                busExamItem.AbbrExamName = dataSet.Tables[0].Rows[0]["AbbrExamName"].ToString();
                result = busExamItem;
            }
            else
            {
                result = null;
            }
            return(result);
        }
Exemplo n.º 8
0
        public bool Update(PEIS.Model.BusExamItem model)
        {
            StringBuilder stringBuilder = new StringBuilder();

            stringBuilder.Append("update BusExamItem set ");
            stringBuilder.Append("ExamItemName=@ExamItemName,");
            stringBuilder.Append("GetResultWay=@GetResultWay,");
            stringBuilder.Append("ExamItemCode=@ExamItemCode,");
            stringBuilder.Append("ID_Section=@ID_Section,");
            stringBuilder.Append("Is_LisValueNull=@Is_LisValueNull,");
            stringBuilder.Append("Is_EntrySectSum=@Is_EntrySectSum,");
            stringBuilder.Append("EntrySectSumLevel=@EntrySectSumLevel,");
            stringBuilder.Append("Is_AutoCalc=@Is_AutoCalc,");
            stringBuilder.Append("CalcExpression=@CalcExpression,");
            stringBuilder.Append("SymCols=@SymCols,");
            stringBuilder.Append("TextboxRows=@TextboxRows,");
            stringBuilder.Append("Is_SameRow=@Is_SameRow,");
            stringBuilder.Append("ExamItemUnit=@ExamItemUnit,");
            stringBuilder.Append("MaleHiLimit=@MaleHiLimit,");
            stringBuilder.Append("MaleLoLimit=@MaleLoLimit,");
            stringBuilder.Append("FemaleHiLimit=@FemaleHiLimit,");
            stringBuilder.Append("FemaleLoLimit=@FemaleLoLimit,");
            stringBuilder.Append("Is_SymMultiValue=@Is_SymMultiValue,");
            stringBuilder.Append("InputCode=@InputCode,");
            stringBuilder.Append("DispOrder=@DispOrder,");
            stringBuilder.Append("Note=@Note,");
            stringBuilder.Append("Forsex=@Forsex,");
            stringBuilder.Append("Is_ExamItemNonPrintInReport=@Is_ExamItemNonPrintInReport,");
            stringBuilder.Append("ID_ExamItemGroup=@ID_ExamItemGroup,");
            stringBuilder.Append("AbbrExamName=@AbbrExamName");
            stringBuilder.Append(" where ID_ExamItem=@ID_ExamItem");
            SqlParameter[] array = new SqlParameter[]
            {
                new SqlParameter("@ExamItemName", SqlDbType.VarChar, 50),
                new SqlParameter("@GetResultWay", SqlDbType.VarChar, 2),
                new SqlParameter("@ExamItemCode", SqlDbType.VarChar, 50),
                new SqlParameter("@ID_Section", SqlDbType.Int, 4),
                new SqlParameter("@Is_LisValueNull", SqlDbType.Bit, 1),
                new SqlParameter("@Is_EntrySectSum", SqlDbType.Bit, 1),
                new SqlParameter("@EntrySectSumLevel", SqlDbType.Int, 4),
                new SqlParameter("@Is_AutoCalc", SqlDbType.Bit, 1),
                new SqlParameter("@CalcExpression", SqlDbType.Text),
                new SqlParameter("@SymCols", SqlDbType.Int, 4),
                new SqlParameter("@TextboxRows", SqlDbType.Int, 4),
                new SqlParameter("@Is_SameRow", SqlDbType.Bit, 1),
                new SqlParameter("@ExamItemUnit", SqlDbType.VarChar, 20),
                new SqlParameter("@MaleHiLimit", SqlDbType.Float, 8),
                new SqlParameter("@MaleLoLimit", SqlDbType.Float, 8),
                new SqlParameter("@FemaleHiLimit", SqlDbType.Float, 8),
                new SqlParameter("@FemaleLoLimit", SqlDbType.Float, 8),
                new SqlParameter("@Is_SymMultiValue", SqlDbType.Bit, 1),
                new SqlParameter("@InputCode", SqlDbType.VarChar, 30),
                new SqlParameter("@DispOrder", SqlDbType.Int, 4),
                new SqlParameter("@Note", SqlDbType.VarChar, 20),
                new SqlParameter("@Forsex", SqlDbType.Int, 4),
                new SqlParameter("@Is_ExamItemNonPrintInReport", SqlDbType.Bit, 1),
                new SqlParameter("@ID_ExamItemGroup", SqlDbType.Int, 4),
                new SqlParameter("@AbbrExamName", SqlDbType.VarChar, 60),
                new SqlParameter("@ID_ExamItem", SqlDbType.Int, 4)
            };
            array[0].Value  = model.ExamItemName;
            array[1].Value  = model.GetResultWay;
            array[2].Value  = model.ExamItemCode;
            array[3].Value  = model.ID_Section;
            array[4].Value  = model.Is_LisValueNull;
            array[5].Value  = model.Is_EntrySectSum;
            array[6].Value  = model.EntrySectSumLevel;
            array[7].Value  = model.Is_AutoCalc;
            array[8].Value  = model.CalcExpression;
            array[9].Value  = model.SymCols;
            array[10].Value = model.TextboxRows;
            array[11].Value = model.Is_SameRow;
            array[12].Value = model.ExamItemUnit;
            array[13].Value = model.MaleHiLimit;
            array[14].Value = model.MaleLoLimit;
            array[15].Value = model.FemaleHiLimit;
            array[16].Value = model.FemaleLoLimit;
            array[17].Value = model.Is_SymMultiValue;
            array[18].Value = model.InputCode;
            array[19].Value = model.DispOrder;
            array[20].Value = model.Note;
            array[21].Value = model.Forsex;
            array[22].Value = model.Is_ExamItemNonPrintInReport;
            array[23].Value = model.ID_ExamItemGroup;
            array[24].Value = model.AbbrExamName;
            array[25].Value = model.ID_ExamItem;
            int num = DbHelperSQL.ExecuteSql(stringBuilder.ToString(), array);

            return(num > 0);
        }