示例#1
0
        public int Add(BuildDiaryModel model)
        {
            StringBuilder builder = new StringBuilder();

            builder.Append("insert into OPM_EPCM_BuildDiary(UID,SN,PrjID,Sfgl,AddUser,Record,AddTime,Remark,Fsrq,Yjqk,Ysqk,Sjbg,");
            builder.Append("Cljc,Jsjd,Zljj,Clsj,Wbhy,Sjjc,Bzrq,Aqcl,Qtqk,Jbr,Cemperature2,Cemperature8,Cemperature14,Cemperature20,");
            builder.Append("AmWeather,PmWeather,FlowState,Shyj,WaterElec,Mason,Painter,Carpentry) ");
            builder.Append("values(");
            builder.Append("'" + model.UID + "',");
            builder.Append("'" + model.SN + "',");
            builder.Append("'" + model.PrjID + "',");
            builder.Append("'" + model.Sfgl + "',");
            builder.Append("'" + model.AddUser + "',");
            builder.Append("'" + model.Record + "',");
            builder.Append("'" + model.AddTime + "',");
            builder.Append("'" + model.Remark + "',");
            builder.Append("'" + model.Fsrq + "',");
            builder.Append("'" + model.Yjqk + "',");
            builder.Append("'" + model.Ysqk + "',");
            builder.Append("'" + model.Sjbg + "',");
            builder.Append("'" + model.Cljc + "',");
            builder.Append("'" + model.Jsjd + "',");
            builder.Append("'" + model.Zljj + "',");
            builder.Append("'" + model.Clsj + "',");
            builder.Append("'" + model.Wbhy + "',");
            builder.Append("'" + model.Sjjc + "',");
            builder.Append("'" + model.Bzrq + "',");
            builder.Append("'" + model.Aqcl + "',");
            builder.Append("'" + model.Qtqk + "',");
            builder.Append("'" + model.Jbr + "',");
            builder.Append("'" + model.Cemperature2 + "',");
            builder.Append("'" + model.Cemperature8 + "',");
            builder.Append("'" + model.Cemperature14 + "',");
            builder.Append("'" + model.Cemperature20 + "',");
            builder.Append("'" + model.AmWeather + "',");
            builder.Append("'" + model.PmWeather + "',");
            builder.Append(model.FlowState + ",");
            builder.Append("'" + model.Shyj + "',");
            builder.Append(model.WaterElec + ",");
            builder.Append(model.Mason + ",");
            builder.Append(model.Painter + ",");
            builder.Append(model.Carpentry + ")");
            return(SqlHelper.ExecuteNonQuery(CommandType.Text, builder.ToString(), null));
        }
示例#2
0
        public int Update(BuildDiaryModel model)
        {
            StringBuilder builder = new StringBuilder();

            builder.Append("update OPM_EPCM_BuildDiary set ");
            builder.Append("SN='" + model.SN + "',");
            builder.Append("PrjID='" + model.PrjID + "',");
            builder.Append("IsValid='" + model.IsValid + "',");
            builder.Append("Record='" + model.Record + "',");
            builder.Append("AddTime='" + model.AddTime + "',");
            builder.Append("Remark='" + model.Remark + "',");
            builder.Append("Fsrq='" + model.Fsrq + "',");
            builder.Append("Yjqk='" + model.Yjqk + "',");
            builder.Append("Ysqk='" + model.Ysqk + "',");
            builder.Append("Sjbg='" + model.Sjbg + "',");
            builder.Append("Cljc='" + model.Cljc + "',");
            builder.Append("Jsjd='" + model.Jsjd + "',");
            builder.Append("Zljj='" + model.Zljj + "',");
            builder.Append("Clsj='" + model.Clsj + "',");
            builder.Append("Wbhy='" + model.Wbhy + "',");
            builder.Append("Sjjc='" + model.Sjjc + "',");
            builder.Append("Bzrq='" + model.Bzrq + "',");
            builder.Append("Aqcl='" + model.Aqcl + "',");
            builder.Append("Qtqk='" + model.Qtqk + "',");
            builder.Append("Jbr='" + model.Jbr + "',");
            builder.Append("Cemperature2='" + model.Cemperature2 + "',");
            builder.Append("Cemperature8='" + model.Cemperature8 + "',");
            builder.Append("Cemperature14='" + model.Cemperature14 + "',");
            builder.Append("Cemperature20='" + model.Cemperature20 + "',");
            builder.Append("AmWeather='" + model.AmWeather + "',");
            builder.Append("PmWeather='" + model.PmWeather + "',");
            builder.Append("Shyj='" + model.Shyj + "', ");
            builder.Append("WaterElec=" + model.WaterElec + ", ");
            builder.Append("Mason=" + model.Mason + ", ");
            builder.Append("Painter=" + model.Painter + ", ");
            builder.Append("Carpentry=" + model.Carpentry + " ");
            builder.Append("where UID='" + model.UID + "'");
            return(SqlHelper.ExecuteNonQuery(CommandType.Text, builder.ToString(), null));
        }