Esempio n. 1
0
 public LDJGModel GetModel(DataRow dr)
 {
     LDJGModel model = new LDJGModel {
         PK = dr["PK"].ToString(),
         Type = dr["Type"].ToString(),
         QYFW = dr["QYFW"].ToString(),
         TPK = dr["TPK"].ToString(),
         TBH = dr["TBH"].ToString(),
         TNAME = dr["TNAME"].ToString(),
         LDPK = dr["LDPK"].ToString(),
         LDMC = dr["LDMC"].ToString()
     };
     if (dr["ZFMinValue"].ToString() != "")
     {
         model.ZFMinValue = new decimal?(decimal.Parse(dr["ZFMinValue"].ToString()));
     }
     if (dr["ZFMaxValue"].ToString() != "")
     {
         model.ZFMaxValue = new decimal?(decimal.Parse(dr["ZFMaxValue"].ToString()));
     }
     if (dr["ZFDefValue"].ToString() != "")
     {
         model.ZFDefValue = new decimal?(decimal.Parse(dr["ZFDefValue"].ToString()));
     }
     if (dr["FZFMinValue"].ToString() != "")
     {
         model.FZFMinValue = new decimal?(decimal.Parse(dr["FZFMinValue"].ToString()));
     }
     if (dr["FZFMaxValue"].ToString() != "")
     {
         model.FZFMaxValue = new decimal?(decimal.Parse(dr["FZFMaxValue"].ToString()));
     }
     if (dr["FZFDefValue"].ToString() != "")
     {
         model.FZFDefValue = new decimal?(decimal.Parse(dr["FZFDefValue"].ToString()));
     }
     return model;
 }
Esempio n. 2
0
 public int Add(LDJGModel model, DB_OPT dbo)
 {
     StringBuilder builder = new StringBuilder();
     builder.Append("insert into " + model.TableName + "(");
     builder.Append("TYPE,QYFW,TPK,TBH,TNAME,ZFMINVALUE,ZFMAXVALUE,ZFDEFVALUE,FZFMINVALUE,FZFMAXVALUE,FZFDEFVALUE,LDPK,LDMC");
     builder.Append(")");
     builder.Append(" values (");
     builder.Append("'" + model.Type + "',");
     builder.Append("'" + model.QYFW + "',");
     builder.Append("'" + model.TPK + "',");
     builder.Append("'" + model.TBH + "',");
     builder.Append("'" + model.TNAME + "',");
     builder.Append(model.ZFMinValue + ",");
     builder.Append(model.ZFMaxValue + ",");
     builder.Append(model.ZFDefValue + ",");
     builder.Append(model.FZFMinValue + ",");
     builder.Append(model.FZFMaxValue + ",");
     builder.Append(model.FZFDefValue + ",");
     builder.Append("'" + model.LDPK + "',");
     builder.Append("'" + model.LDMC + "'");
     builder.Append(")");
     return dbo.ExecutionIsSucess(builder.ToString(), null);
 }
Esempio n. 3
0
 public int Update(LDJGModel model, DB_OPT dbo)
 {
     StringBuilder builder = new StringBuilder();
     builder.Append("update " + model.TableName + " set ");
     builder.Append("Type='" + model.Type + "',");
     builder.Append("QYFW='" + model.QYFW + "',");
     builder.Append("TPK='" + model.TPK + "',");
     builder.Append("TBH='" + model.TBH + "',");
     builder.Append("TNAME='" + model.TNAME + "',");
     builder.Append("ZFMinValue=" + model.ZFMinValue + ",");
     builder.Append("ZFMaxValue=" + model.ZFMaxValue + ",");
     builder.Append("ZFDefValue=" + model.ZFDefValue + ",");
     builder.Append("FZFMinValue=" + model.FZFMinValue + ",");
     builder.Append("FZFMaxValue=" + model.FZFMaxValue + ",");
     builder.Append("FZFDefValue=" + model.FZFDefValue + ",");
     builder.Append("LDMC='" + model.LDMC + "',");
     builder.Append("LDPK='" + model.LDPK + "'");
     builder.Append(" where PK='" + model.PK + "' ");
     return dbo.ExecutionIsSucess(builder.ToString(), null);
 }
Esempio n. 4
0
 public LDJGModel[] GetModels(string strWhere, string tablename, DB_OPT dbo)
 {
     StringBuilder builder = new StringBuilder();
     builder.Append(this.GetSql(tablename));
     if (strWhere != "")
     {
         builder.Append(" where " + strWhere);
     }
     OracleParameter[] parameters = null;
     DataSet set = dbo.BackDataSet(builder.ToString(), parameters, "");
     LDJGModel[] modelArray = null;
     if (set.Tables[0].Rows.Count <= 0)
     {
         return null;
     }
     modelArray = new LDJGModel[set.Tables[0].Rows.Count];
     for (int i = 0; i < set.Tables[0].Rows.Count; i++)
     {
         modelArray[i] = this.GetModel(set.Tables[0].Rows[i]);
     }
     return modelArray;
 }