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;
        }