Beispiel #1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(MesDBAccess.Model.View_ProduceRecordModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update View_ProduceRecord set ");
            strSql.Append("processStepName=@processStepName,");
            strSql.Append("productID=@productID,");
            strSql.Append("productCata=@productCata,");
            strSql.Append("stationID=@stationID,");
            strSql.Append("recordCata=@recordCata,");
            strSql.Append("recordID=@recordID,");
            strSql.Append("recordTime=@recordTime,");
            strSql.Append("checkResult=@checkResult,");
            strSql.Append("tag1=@tag1,");
            strSql.Append("tag2=@tag2,");
            strSql.Append("tag3=@tag3,");
            strSql.Append("tag4=@tag4,");
            strSql.Append("tag5=@tag5");
            strSql.Append(" where productID=@productID ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@processStepName", SqlDbType.NVarChar,   50),
                new SqlParameter("@productID",       SqlDbType.NVarChar,   50),
                new SqlParameter("@productCata",     SqlDbType.NVarChar,   50),
                new SqlParameter("@stationID",       SqlDbType.NVarChar,   50),
                new SqlParameter("@recordCata",      SqlDbType.NVarChar,   50),
                new SqlParameter("@recordID",        SqlDbType.NVarChar,  255),
                new SqlParameter("@recordTime",      SqlDbType.DateTime),
                new SqlParameter("@checkResult",     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.processStepName;
            parameters[1].Value  = model.productID;
            parameters[2].Value  = model.productCata;
            parameters[3].Value  = model.stationID;
            parameters[4].Value  = model.recordCata;
            parameters[5].Value  = model.recordID;
            parameters[6].Value  = model.recordTime;
            parameters[7].Value  = model.checkResult;
            parameters[8].Value  = model.tag1;
            parameters[9].Value  = model.tag2;
            parameters[10].Value = model.tag3;
            parameters[11].Value = model.tag4;
            parameters[12].Value = model.tag5;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #2
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public MesDBAccess.Model.View_ProduceRecordModel DataRowToModel(DataRow row)
 {
     MesDBAccess.Model.View_ProduceRecordModel model = new MesDBAccess.Model.View_ProduceRecordModel();
     if (row != null)
     {
         if (row["processStepName"] != null)
         {
             model.processStepName = row["processStepName"].ToString();
         }
         if (row["productID"] != null)
         {
             model.productID = row["productID"].ToString();
         }
         if (row["productCata"] != null)
         {
             model.productCata = row["productCata"].ToString();
         }
         if (row["stationID"] != null)
         {
             model.stationID = row["stationID"].ToString();
         }
         if (row["recordCata"] != null)
         {
             model.recordCata = row["recordCata"].ToString();
         }
         if (row["recordID"] != null)
         {
             model.recordID = row["recordID"].ToString();
         }
         if (row["recordTime"] != null && row["recordTime"].ToString() != "")
         {
             model.recordTime = DateTime.Parse(row["recordTime"].ToString());
         }
         if (row["checkResult"] != null)
         {
             model.checkResult = row["checkResult"].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);
 }
Beispiel #3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(MesDBAccess.Model.View_ProduceRecordModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into View_ProduceRecord(");
            strSql.Append("processStepName,productID,productCata,stationID,recordCata,recordID,recordTime,checkResult,tag1,tag2,tag3,tag4,tag5)");
            strSql.Append(" values (");
            strSql.Append("@processStepName,@productID,@productCata,@stationID,@recordCata,@recordID,@recordTime,@checkResult,@tag1,@tag2,@tag3,@tag4,@tag5)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@processStepName", SqlDbType.NVarChar,   50),
                new SqlParameter("@productID",       SqlDbType.NVarChar,   50),
                new SqlParameter("@productCata",     SqlDbType.NVarChar,   50),
                new SqlParameter("@stationID",       SqlDbType.NVarChar,   50),
                new SqlParameter("@recordCata",      SqlDbType.NVarChar,   50),
                new SqlParameter("@recordID",        SqlDbType.NVarChar,  255),
                new SqlParameter("@recordTime",      SqlDbType.DateTime),
                new SqlParameter("@checkResult",     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.processStepName;
            parameters[1].Value  = model.productID;
            parameters[2].Value  = model.productCata;
            parameters[3].Value  = model.stationID;
            parameters[4].Value  = model.recordCata;
            parameters[5].Value  = model.recordID;
            parameters[6].Value  = model.recordTime;
            parameters[7].Value  = model.checkResult;
            parameters[8].Value  = model.tag1;
            parameters[9].Value  = model.tag2;
            parameters[10].Value = model.tag3;
            parameters[11].Value = model.tag4;
            parameters[12].Value = model.tag5;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #4
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public MesDBAccess.Model.View_ProduceRecordModel GetModel(string productID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 processStepName,productID,productCata,stationID,recordCata,recordID,recordTime,checkResult,tag1,tag2,tag3,tag4,tag5 from View_ProduceRecord ");
            strSql.Append(" where productID=@productID ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@productID", SqlDbType.NVarChar, 50)
            };
            parameters[0].Value = productID;

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }