/// </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.EntityLocation entity = new project.Entity.Base.EntityLocation();
         entity.LOCNo       = dr["LOCNo"].ToString();
         entity.LOCName     = dr["LOCName"].ToString();
         entity.ParentLOCNo = dr["ParentLOCNo"].ToString();
         entity.LOCLevel    = ParseIntForString(dr["LOCLevel"].ToString());
         result.Add(entity);
     }
     return(result);
 }
 /// <summary>
 /// 带参数的构函数
 /// </summary>
 /// <param name="entity">实体类</param>
 public BusinessLocation(project.Entity.Base.EntityLocation entity)
 {
     this._entity = entity;
 }