Exemplo n.º 1
0
        /// </summary>
        ///Query 方法 dt查询结果
        /// </summary>
        public System.Collections.IList Query(System.Data.DataTable dt)
        {
            System.Collections.IList result = new System.Collections.ArrayList();
            foreach (System.Data.DataRow dr in dt.Rows)
            {
                project.Entity.Base.EntityFlow entity = new project.Entity.Base.EntityFlow();

                entity.FlowNo   = dr["FlowNo"].ToString();
                entity.FlowName = dr["FlowName"].ToString();
                entity.AccID    = dr["AccID"].ToString();
                entity.OrdNo    = dr["OrdNo"].ToString();
                entity.Remark   = dr["Remark"].ToString();
                result.Add(entity);
            }
            return(result);
        }
Exemplo n.º 2
0
 /// <summary>
 /// 带参数的构函数
 /// </summary>
 /// <param name="entity">实体类</param>
 public BusinessFlow(project.Entity.Base.EntityFlow entity)
 {
     this._entity = entity;
 }