/// </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.EntityWarningTime entity = new project.Entity.Base.EntityWarningTime();
         entity.InnerEntityOID = dr["RowPointer"].ToString();
         entity.AccID          = dr["AccID"].ToString();
         entity.ParaNo         = dr["ParaNo"].ToString();
         entity.ParaName       = dr["ParaName"].ToString();
         entity.Time           = int.Parse(dr["Time"].ToString());
         result.Add(entity);
     }
     return(result);
 }
 /// <summary>
 /// 带参数的构函数
 /// </summary>
 /// <param name="entity">实体类</param>
 public BusinessWarningTime(project.Entity.Base.EntityWarningTime entity)
 {
     this._entity = entity;
 }