コード例 #1
0
ファイル: Cell_Templet.cs プロジェクト: tangaoxiang/ERM
        /// <summary>
        /// 获得数据列表
        /// </summary>
        public MDL.T_CellFile GetMaxByParentID(string parentid)
        {
            MDL.T_CellFile mdl = new ERM.MDL.T_CellFile();
            DataSet        ds1 = dal.GetMaxByParentID(parentid);

            if (ds1.Tables.Count > 0 && ds1.Tables[0].Rows.Count > 0)
            {
                mdl = dal.Find(ds1.Tables[0].Rows[0]["id"].ToString(), ds1.Tables[0].Rows[0]["ProjectNO"].ToString());
            }
            return(mdl);
        }
コード例 #2
0
ファイル: Cell_Templet.cs プロジェクト: tangaoxiang/ERM
        /// <summary>
        /// 获得数据列表
        /// </summary>
        public List <ERM.MDL.T_CellFile> GetModelList(string strWhere)
        {
            DataSet ds = dal.GetList(strWhere);
            List <ERM.MDL.T_CellFile> modelList = new List <ERM.MDL.T_CellFile>();
            int rowsCount = ds.Tables[0].Rows.Count;

            if (rowsCount > 0)
            {
                ERM.MDL.T_CellFile model;
                for (int n = 0; n < rowsCount; n++)
                {
                    model        = new ERM.MDL.T_CellFile();
                    model.codeno = ds.Tables[0].Rows[n]["codeno"].ToString();
                    if (ds.Tables[0].Rows[n]["codetype"].ToString() != "")
                    {
                        model.codetype = int.Parse(ds.Tables[0].Rows[n]["codetype"].ToString());
                    }
                    if (ds.Tables[0].Rows[n]["customdefine"].ToString() != "")
                    {
                        model.customdefine = int.Parse(ds.Tables[0].Rows[n]["customdefine"].ToString());
                    }
                    model.examplepath = ds.Tables[0].Rows[n]["examplepath"].ToString();
                    model.fbmc        = ds.Tables[0].Rows[n]["fbmc"].ToString();
                    model.filepath    = ds.Tables[0].Rows[n]["filepath"].ToString();
                    model.fxmc        = ds.Tables[0].Rows[n]["fxmc"].ToString();
                    model.id          = ds.Tables[0].Rows[n]["id"].ToString();
                    if (ds.Tables[0].Rows[n]["isvisible"].ToString() != "")
                    {
                        model.isvisible = int.Parse(ds.Tables[0].Rows[n]["isvisible"].ToString());
                    }
                    if (ds.Tables[0].Rows[n]["orderindex"].ToString() != "")
                    {
                        model.orderindex = int.Parse(ds.Tables[0].Rows[n]["orderindex"].ToString());
                    }
                    model.parentid  = ds.Tables[0].Rows[n]["parentid"].ToString();
                    model.ProjectNO = ds.Tables[0].Rows[n]["ProjectNO"].ToString();
                    model.PTreePath = ds.Tables[0].Rows[n]["PTreePath"].ToString();
                    model.title     = ds.Tables[0].Rows[n]["title"].ToString();
                    model.TreePath  = ds.Tables[0].Rows[n]["TreePath"].ToString();
                    if (ds.Tables[0].Rows[n]["ys"].ToString() != "")
                    {
                        model.ys = int.Parse(ds.Tables[0].Rows[n]["ys"].ToString());
                    }
                    model.zfbmc = ds.Tables[0].Rows[n]["zfbmc"].ToString();
                    model.zrr   = ds.Tables[0].Rows[n]["zrr"].ToString();
                    modelList.Add(model);
                }
            }
            return(modelList);
        }
コード例 #3
0
ファイル: Cell_Templet.cs プロジェクト: tangaoxiang/ERM
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public void Update(ERM.MDL.T_CellFile model)
 {
     dal.Update(model);
 }
コード例 #4
0
ファイル: Cell_Templet.cs プロジェクト: tangaoxiang/ERM
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public void Add(ERM.MDL.T_CellFile model)
 {
     dal.Add(model);
 }