Ejemplo n.º 1
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public IPSP.Model.TFCode_NodeRelation GetModel(Guid g_ID, Guid g_CodeTaskChainGuid)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 g_ID,s_Name,s_Description,g_CodeTaskChainGuid,g_FromNodeGuid,g_ToNodeGuid,s_Condition,s_Reopen from TFCode_NodeRelation ");
            strSql.Append(" where g_ID=@g_ID and g_CodeTaskChainGuid=@g_CodeTaskChainGuid ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@g_ID",                SqlDbType.UniqueIdentifier, 16),
                new SqlParameter("@g_CodeTaskChainGuid", SqlDbType.UniqueIdentifier, 16)
            };
            parameters[0].Value = g_ID;
            parameters[1].Value = g_CodeTaskChainGuid;

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(IPSP.Model.TFCode_NodeRelation model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update TFCode_NodeRelation set ");
            strSql.Append("s_Name=@s_Name,");
            strSql.Append("s_Description=@s_Description,");
            strSql.Append("g_FromNodeGuid=@g_FromNodeGuid,");
            strSql.Append("g_ToNodeGuid=@g_ToNodeGuid,");
            strSql.Append("s_Condition=@s_Condition,");
            strSql.Append("s_Reopen=@s_Reopen");
            strSql.Append(" where g_ID=@g_ID and g_CodeTaskChainGuid=@g_CodeTaskChainGuid ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@s_Name",              SqlDbType.NVarChar,          100),
                new SqlParameter("@s_Description",       SqlDbType.NVarChar,         1000),
                new SqlParameter("@g_FromNodeGuid",      SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@g_ToNodeGuid",        SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@s_Condition",         SqlDbType.NVarChar,         2000),
                new SqlParameter("@s_Reopen",            SqlDbType.NVarChar,            1),
                new SqlParameter("@g_ID",                SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@g_CodeTaskChainGuid", SqlDbType.UniqueIdentifier, 16)
            };
            parameters[0].Value = model.s_Name;
            parameters[1].Value = model.s_Description;
            parameters[2].Value = model.g_FromNodeGuid;
            parameters[3].Value = model.g_ToNodeGuid;
            parameters[4].Value = model.s_Condition;
            parameters[5].Value = model.s_Reopen;
            parameters[6].Value = model.g_ID;
            parameters[7].Value = model.g_CodeTaskChainGuid;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 3
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public IPSP.Model.TFCode_NodeRelation DataRowToModel(DataRow row)
 {
     IPSP.Model.TFCode_NodeRelation model = new IPSP.Model.TFCode_NodeRelation();
     if (row != null)
     {
         if (row["g_ID"] != null && row["g_ID"].ToString() != "")
         {
             model.g_ID = new Guid(row["g_ID"].ToString());
         }
         if (row["s_Name"] != null)
         {
             model.s_Name = row["s_Name"].ToString();
         }
         if (row["s_Description"] != null)
         {
             model.s_Description = row["s_Description"].ToString();
         }
         if (row["g_CodeTaskChainGuid"] != null && row["g_CodeTaskChainGuid"].ToString() != "")
         {
             model.g_CodeTaskChainGuid = new Guid(row["g_CodeTaskChainGuid"].ToString());
         }
         if (row["g_FromNodeGuid"] != null && row["g_FromNodeGuid"].ToString() != "")
         {
             model.g_FromNodeGuid = new Guid(row["g_FromNodeGuid"].ToString());
         }
         if (row["g_ToNodeGuid"] != null && row["g_ToNodeGuid"].ToString() != "")
         {
             model.g_ToNodeGuid = new Guid(row["g_ToNodeGuid"].ToString());
         }
         if (row["s_Condition"] != null)
         {
             model.s_Condition = row["s_Condition"].ToString();
         }
         if (row["s_Reopen"] != null)
         {
             model.s_Reopen = row["s_Reopen"].ToString();
         }
     }
     return(model);
 }
Ejemplo n.º 4
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(IPSP.Model.TFCode_NodeRelation model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into TFCode_NodeRelation(");
            strSql.Append("g_ID,s_Name,s_Description,g_CodeTaskChainGuid,g_FromNodeGuid,g_ToNodeGuid,s_Condition,s_Reopen)");
            strSql.Append(" values (");
            strSql.Append("@g_ID,@s_Name,@s_Description,@g_CodeTaskChainGuid,@g_FromNodeGuid,@g_ToNodeGuid,@s_Condition,@s_Reopen)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@g_ID",                SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@s_Name",              SqlDbType.NVarChar,          100),
                new SqlParameter("@s_Description",       SqlDbType.NVarChar,         1000),
                new SqlParameter("@g_CodeTaskChainGuid", SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@g_FromNodeGuid",      SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@g_ToNodeGuid",        SqlDbType.UniqueIdentifier,   16),
                new SqlParameter("@s_Condition",         SqlDbType.NVarChar,         2000),
                new SqlParameter("@s_Reopen",            SqlDbType.NVarChar, 1)
            };
            parameters[0].Value = Guid.NewGuid();
            parameters[1].Value = model.s_Name;
            parameters[2].Value = model.s_Description;
            parameters[3].Value = Guid.NewGuid();
            parameters[4].Value = Guid.NewGuid();
            parameters[5].Value = Guid.NewGuid();
            parameters[6].Value = model.s_Condition;
            parameters[7].Value = model.s_Reopen;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 5
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public bool Update(IPSP.Model.TFCode_NodeRelation model)
 {
     return(dal.Update(model));
 }
Ejemplo n.º 6
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public bool Add(IPSP.Model.TFCode_NodeRelation model)
 {
     return(dal.Add(model));
 }