Beispiel #1
0
        /// <summary>
        /// 获得数据列表
        /// </summary>
        public List <ERM.MDL.Attachment> GetModelList(string strWhere)
        {
            DataSet ds = dal.GetList(strWhere);
            List <ERM.MDL.Attachment> modelList = new List <ERM.MDL.Attachment>();
            int rowsCount = ds.Tables[0].Rows.Count;

            if (rowsCount > 0)
            {
                ERM.MDL.Attachment model;
                for (int n = 0; n < rowsCount; n++)
                {
                    model           = new ERM.MDL.Attachment();
                    model.ArchiveID = ds.Tables[0].Rows[n]["ArchiveID"].ToString();
                    if (ds.Tables[0].Rows[n]["attachid"].ToString() != "")
                    {
                        model.attachid = int.Parse(ds.Tables[0].Rows[n]["attachid"].ToString());
                    }
                    model.docFormat = ds.Tables[0].Rows[n]["docFormat"].ToString();
                    model.docType   = ds.Tables[0].Rows[n]["docType"].ToString();
                    if (ds.Tables[0].Rows[n]["DocYs"].ToString() != "")
                    {
                        model.DocYs = int.Parse(ds.Tables[0].Rows[n]["DocYs"].ToString());
                    }
                    model.Draft  = ds.Tables[0].Rows[n]["Draft"].ToString();
                    model.ext    = ds.Tables[0].Rows[n]["ext"].ToString();
                    model.fileID = ds.Tables[0].Rows[n]["fileID"].ToString();
                    if (ds.Tables[0].Rows[n]["FileOrderIndex"].ToString() != "")
                    {
                        model.FileOrderIndex = int.Parse(ds.Tables[0].Rows[n]["FileOrderIndex"].ToString());
                    }
                    model.filepath     = ds.Tables[0].Rows[n]["filepath"].ToString();
                    model.fileTreePath = ds.Tables[0].Rows[n]["fileTreePath"].ToString();
                    if (ds.Tables[0].Rows[n]["OrderIndex2"].ToString() != "")
                    {
                        model.OrderIndex2 = int.Parse(ds.Tables[0].Rows[n]["OrderIndex2"].ToString());
                    }
                    model.OriOpenPro = ds.Tables[0].Rows[n]["OriOpenPro"].ToString();
                    model.ProjectNO  = ds.Tables[0].Rows[n]["ProjectNO"].ToString();
                    model.title      = ds.Tables[0].Rows[n]["title"].ToString();
                    model.wjly       = ds.Tables[0].Rows[n]["wjly"].ToString();
                    model.yswjpath   = ds.Tables[0].Rows[n]["yswjpath"].ToString();
                    model.zezzzfw    = ds.Tables[0].Rows[n]["zezzzfw"].ToString();
                    model.zrzbsm     = ds.Tables[0].Rows[n]["zrzbsm"].ToString();
                    model.zrzlb      = ds.Tables[0].Rows[n]["zrzlb"].ToString();
                    model.zrzmc      = ds.Tables[0].Rows[n]["zrzmc"].ToString();
                    modelList.Add(model);
                }
            }
            return(modelList);
        }
Beispiel #2
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public void Update(ERM.MDL.Attachment model)
 {
     dal.Update(model);
 }
Beispiel #3
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public void Add(ERM.MDL.Attachment model)
 {
     dal.Add(model);
 }