Beispiel #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.EntityStatus entity = new project.Entity.Base.EntityStatus();

                entity.StatusNo   = dr["StatusNo"].ToString();
                entity.StatusName = dr["StatusName"].ToString();
                entity.AccID      = dr["AccID"].ToString();
                entity.OrdNo      = dr["OrdNo"].ToString();
                entity.NodeNo     = dr["NodeNo"].ToString();
                result.Add(entity);
            }
            return(result);
        }
Beispiel #2
0
 /// <summary>
 /// 带参数的构函数
 /// </summary>
 /// <param name="entity">实体类</param>
 public BusinessStatus(project.Entity.Base.EntityStatus entity)
 {
     this._entity = entity;
 }