/// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(batteryPropertyValueModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update batteryPropertyValue set ");
            strSql.Append("batteryID=@batteryID,");
            strSql.Append("propertyID=@propertyID,");
            strSql.Append("propertyValueID=@propertyValueID,");
            strSql.Append("tag1=@tag1,");
            strSql.Append("tag2=@tag2,");
            strSql.Append("tag3=@tag3,");
            strSql.Append("tag4=@tag4,");
            strSql.Append("tag5=@tag5");
            strSql.Append(" where batteryPropertyValueID=@batteryPropertyValueID ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@batteryID",              SqlDbType.NVarChar, 50),
                new SqlParameter("@propertyID",             SqlDbType.NVarChar, 50),
                new SqlParameter("@propertyValueID",        SqlDbType.NVarChar, 50),
                new SqlParameter("@tag1",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag2",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag3",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag4",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag5",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@batteryPropertyValueID", SqlDbType.NVarChar, 50)
            };
            parameters[0].Value = model.batteryID;
            parameters[1].Value = model.propertyID;
            parameters[2].Value = model.propertyValueID;
            parameters[3].Value = model.tag1;
            parameters[4].Value = model.tag2;
            parameters[5].Value = model.tag3;
            parameters[6].Value = model.tag4;
            parameters[7].Value = model.tag5;
            parameters[8].Value = model.batteryPropertyValueID;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public batteryPropertyValueModel DataRowToModel(DataRow row)
        {
            batteryPropertyValueModel model = new batteryPropertyValueModel();

            if (row != null)
            {
                if (row["batteryPropertyValueID"] != null)
                {
                    model.batteryPropertyValueID = row["batteryPropertyValueID"].ToString();
                }
                if (row["batteryID"] != null)
                {
                    model.batteryID = row["batteryID"].ToString();
                }
                if (row["propertyID"] != null)
                {
                    model.propertyID = row["propertyID"].ToString();
                }
                if (row["propertyValueID"] != null)
                {
                    model.propertyValueID = row["propertyValueID"].ToString();
                }
                if (row["tag1"] != null)
                {
                    model.tag1 = row["tag1"].ToString();
                }
                if (row["tag2"] != null)
                {
                    model.tag2 = row["tag2"].ToString();
                }
                if (row["tag3"] != null)
                {
                    model.tag3 = row["tag3"].ToString();
                }
                if (row["tag4"] != null)
                {
                    model.tag4 = row["tag4"].ToString();
                }
                if (row["tag5"] != null)
                {
                    model.tag5 = row["tag5"].ToString();
                }
            }
            return(model);
        }
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(batteryPropertyValueModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into batteryPropertyValue(");
            strSql.Append("batteryPropertyValueID,batteryID,propertyID,propertyValueID,tag1,tag2,tag3,tag4,tag5)");
            strSql.Append(" values (");
            strSql.Append("@batteryPropertyValueID,@batteryID,@propertyID,@propertyValueID,@tag1,@tag2,@tag3,@tag4,@tag5)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@batteryPropertyValueID", SqlDbType.NVarChar, 50),
                new SqlParameter("@batteryID",              SqlDbType.NVarChar, 50),
                new SqlParameter("@propertyID",             SqlDbType.NVarChar, 50),
                new SqlParameter("@propertyValueID",        SqlDbType.NVarChar, 50),
                new SqlParameter("@tag1",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag2",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag3",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag4",                   SqlDbType.NVarChar, 50),
                new SqlParameter("@tag5",                   SqlDbType.NVarChar, 50)
            };
            parameters[0].Value = model.batteryPropertyValueID;
            parameters[1].Value = model.batteryID;
            parameters[2].Value = model.propertyID;
            parameters[3].Value = model.propertyValueID;
            parameters[4].Value = model.tag1;
            parameters[5].Value = model.tag2;
            parameters[6].Value = model.tag3;
            parameters[7].Value = model.tag4;
            parameters[8].Value = model.tag5;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public batteryPropertyValueModel GetModel(string batteryPropertyValueID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 batteryPropertyValueID,batteryID,propertyID,propertyValueID,tag1,tag2,tag3,tag4,tag5 from batteryPropertyValue ");
            strSql.Append(" where batteryPropertyValueID=@batteryPropertyValueID ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@batteryPropertyValueID", SqlDbType.NVarChar, 50)
            };
            parameters[0].Value = batteryPropertyValueID;

            batteryPropertyValueModel model = new batteryPropertyValueModel();
            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 bool Update(batteryPropertyValueModel model)
 {
     return(dal.Update(model));
 }
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public bool Add(batteryPropertyValueModel model)
 {
     return(dal.Add(model));
 }