/// <summary> /// 增加一条数据 /// </summary> public int Add(LPWeb.Model.Template_RuleConditions model) { StringBuilder strSql = new StringBuilder(); strSql.Append("insert into Template_RuleConditions("); strSql.Append("RuleId,PointFieldId,Condition,Tolerance,ToleranceType)"); strSql.Append(" values ("); strSql.Append("@RuleId,@PointFieldId,@Condition,@Tolerance,@ToleranceType)"); strSql.Append(";select @@IDENTITY"); SqlParameter[] parameters = { new SqlParameter("@RuleId", SqlDbType.Int, 4), new SqlParameter("@PointFieldId", SqlDbType.Decimal, 5), new SqlParameter("@Condition", SqlDbType.SmallInt, 2), new SqlParameter("@Tolerance", SqlDbType.NVarChar, 250), new SqlParameter("@ToleranceType", SqlDbType.NChar, 10) }; parameters[0].Value = model.RuleId; parameters[1].Value = model.PointFieldId; parameters[2].Value = model.Condition; parameters[3].Value = model.Tolerance; parameters[4].Value = model.ToleranceType; object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters); if (obj == null) { return(1); } else { return(Convert.ToInt32(obj)); } }
/// <summary> /// 更新一条数据 /// </summary> public void Update(LPWeb.Model.Template_RuleConditions model) { StringBuilder strSql = new StringBuilder(); strSql.Append("update Template_RuleConditions set "); strSql.Append("RuleCondId=@RuleCondId,"); strSql.Append("RuleId=@RuleId,"); strSql.Append("PointFieldId=@PointFieldId,"); strSql.Append("Condition=@Condition,"); strSql.Append("Tolerance=@Tolerance,"); strSql.Append("ToleranceType=@ToleranceType"); strSql.Append(" where RuleCondId=@RuleCondId "); SqlParameter[] parameters = { new SqlParameter("@RuleCondId", SqlDbType.Int, 4), new SqlParameter("@RuleId", SqlDbType.Int, 4), new SqlParameter("@PointFieldId", SqlDbType.Decimal, 5), new SqlParameter("@Condition", SqlDbType.SmallInt, 2), new SqlParameter("@Tolerance", SqlDbType.NVarChar, 250), new SqlParameter("@ToleranceType", SqlDbType.NChar, 10) }; parameters[0].Value = model.RuleCondId; parameters[1].Value = model.RuleId; parameters[2].Value = model.PointFieldId; parameters[3].Value = model.Condition; parameters[4].Value = model.Tolerance; parameters[5].Value = model.ToleranceType; DbHelperSQL.ExecuteSql(strSql.ToString(), parameters); }
/// <summary> /// 得到一个对象实体 /// </summary> public LPWeb.Model.Template_RuleConditions GetModel(int RuleCondId) { StringBuilder strSql = new StringBuilder(); strSql.Append("select top 1 RuleCondId,RuleId,PointFieldId,Condition,Tolerance,ToleranceType from Template_RuleConditions "); strSql.Append(" where RuleCondId=@RuleCondId "); SqlParameter[] parameters = { new SqlParameter("@RuleCondId", SqlDbType.Int, 4) }; parameters[0].Value = RuleCondId; LPWeb.Model.Template_RuleConditions model = new LPWeb.Model.Template_RuleConditions(); DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters); if (ds.Tables[0].Rows.Count > 0) { if (ds.Tables[0].Rows[0]["RuleCondId"].ToString() != "") { model.RuleCondId = int.Parse(ds.Tables[0].Rows[0]["RuleCondId"].ToString()); } if (ds.Tables[0].Rows[0]["RuleId"].ToString() != "") { model.RuleId = int.Parse(ds.Tables[0].Rows[0]["RuleId"].ToString()); } if (ds.Tables[0].Rows[0]["PointFieldId"].ToString() != "") { model.PointFieldId = decimal.Parse(ds.Tables[0].Rows[0]["PointFieldId"].ToString()); } if (ds.Tables[0].Rows[0]["Condition"].ToString() != "") { model.Condition = int.Parse(ds.Tables[0].Rows[0]["Condition"].ToString()); } model.Tolerance = ds.Tables[0].Rows[0]["Tolerance"].ToString(); model.ToleranceType = ds.Tables[0].Rows[0]["ToleranceType"].ToString(); return(model); } else { return(null); } }