コード例 #1
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(TSM.Model.pms_Detailed_Charge model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into pms_Detailed_Charge(");
            strSql.Append("QuotationInfoID,DeviceType,DeviceDescript,InternalCost,InternalPrice)");
            strSql.Append(" values (");
            strSql.Append("@QuotationInfoID,@DeviceType,@DeviceDescript,@InternalCost,@InternalPrice)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@QuotationInfoID", SqlDbType.Int,      4),
                new SqlParameter("@DeviceType",      SqlDbType.VarChar, 64),
                new SqlParameter("@DeviceDescript",  SqlDbType.VarChar, 64),
                new SqlParameter("@InternalCost",    SqlDbType.Int,      4),
                new SqlParameter("@InternalPrice",   SqlDbType.Int, 4)
            };
            parameters[0].Value = model.QuotationInfoID;
            parameters[1].Value = model.DeviceType;
            parameters[2].Value = model.DeviceDescript;
            parameters[3].Value = model.InternalCost;
            parameters[4].Value = model.InternalPrice;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(1);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
コード例 #2
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(TSM.Model.pms_Detailed_Charge model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update pms_Detailed_Charge set ");
            strSql.Append("QuotationInfoID=@QuotationInfoID,");
            strSql.Append("DeviceType=@DeviceType,");
            strSql.Append("DeviceDescript=@DeviceDescript,");
            strSql.Append("InternalCost=@InternalCost,");
            strSql.Append("InternalPrice=@InternalPrice");
            strSql.Append(" where DetailedChargeID=@DetailedChargeID ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@DetailedChargeID", SqlDbType.Int,      4),
                new SqlParameter("@QuotationInfoID",  SqlDbType.Int,      4),
                new SqlParameter("@DeviceType",       SqlDbType.VarChar, 64),
                new SqlParameter("@DeviceDescript",   SqlDbType.VarChar, 64),
                new SqlParameter("@InternalCost",     SqlDbType.Int,      4),
                new SqlParameter("@InternalPrice",    SqlDbType.Int, 4)
            };
            parameters[0].Value = model.DetailedChargeID;
            parameters[1].Value = model.QuotationInfoID;
            parameters[2].Value = model.DeviceType;
            parameters[3].Value = model.DeviceDescript;
            parameters[4].Value = model.InternalCost;
            parameters[5].Value = model.InternalPrice;

            DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
        }
コード例 #3
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public TSM.Model.pms_Detailed_Charge GetModel(int DetailedChargeID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 DetailedChargeID,QuotationInfoID,DeviceType,DeviceDescript,InternalCost,InternalPrice from pms_Detailed_Charge ");
            strSql.Append(" where DetailedChargeID=@DetailedChargeID ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@DetailedChargeID", SqlDbType.Int, 4)
            };
            parameters[0].Value = DetailedChargeID;

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

            if (ds.Tables[0].Rows.Count > 0)
            {
                if (ds.Tables[0].Rows[0]["DetailedChargeID"].ToString() != "")
                {
                    model.DetailedChargeID = int.Parse(ds.Tables[0].Rows[0]["DetailedChargeID"].ToString());
                }
                if (ds.Tables[0].Rows[0]["QuotationInfoID"].ToString() != "")
                {
                    model.QuotationInfoID = int.Parse(ds.Tables[0].Rows[0]["QuotationInfoID"].ToString());
                }
                model.DeviceType     = ds.Tables[0].Rows[0]["DeviceType"].ToString();
                model.DeviceDescript = ds.Tables[0].Rows[0]["DeviceDescript"].ToString();
                if (ds.Tables[0].Rows[0]["InternalCost"].ToString() != "")
                {
                    model.InternalCost = int.Parse(ds.Tables[0].Rows[0]["InternalCost"].ToString());
                }
                if (ds.Tables[0].Rows[0]["InternalPrice"].ToString() != "")
                {
                    model.InternalPrice = int.Parse(ds.Tables[0].Rows[0]["InternalPrice"].ToString());
                }
                return(model);
            }
            else
            {
                return(null);
            }
        }