public DB.Stru.基层科.民主管理信息管理_选举结果 GetFirst_ByWhere(string strWhere)
        {
            DB.Stru.基层科.民主管理信息管理_选举结果 stru = new DB.Stru.基层科.民主管理信息管理_选举结果 () ;
            List<DB.Stru.基层科.民主管理信息管理_选举结果> list = Get_ByWhere ( strWhere ) ;

            if ( list != null && list.Count > 0 )
                stru = list [ 0 ];

            return stru ;
        }
        public static List<DB.Stru.基层科.民主管理信息管理_选举结果> Dt2List(ref DataTable dt)
        {
            List<DB.Stru.基层科.民主管理信息管理_选举结果> lst = new List<DB.Stru.基层科.民主管理信息管理_选举结果>();

            if (SQL.IsNotValid(ref dt))
                return lst;

            foreach (DataRow dr in dt.Rows)
            {
                DB.Stru.基层科.民主管理信息管理_选举结果 stru = new DB.Stru.基层科.民主管理信息管理_选举结果();
                stru.Dr2Stru ( dr );
                lst.Add ( stru );
            }

            return lst;
        }