示例#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.EntityFlowNode entity = new project.Entity.Base.EntityFlowNode();
         entity.NodeNo   = dr["NodeNo"].ToString();
         entity.NodeName = dr["NodeName"].ToString();
         entity.AccID    = dr["AccID"].ToString();
         entity.Status   = dr["Status"].ToString();
         entity.ProcMode = dr["ProcMode"].ToString();
         entity.OpNo     = dr["OpNo"].ToString();
         entity.OpName   = dr["OpName"].ToString();
         result.Add(entity);
     }
     return(result);
 }
示例#2
0
 /// <summary>
 /// 带参数的构函数
 /// </summary>
 /// <param name="entity">实体类</param>
 public BusinessFlowNode(project.Entity.Base.EntityFlowNode entity)
 {
     this._entity = entity;
 }