亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? mainbean.java

?? 在系統(tǒng)開發(fā)過程中用到了javabean和jsp技術(shù)
?? JAVA
?? 第 1 頁 / 共 5 頁
字號(hào):
		{
			String id4 = rs.getString("ID");
			v_child.add(id4);
			Stack s4 = new Stack();
			s4.push(id4);

			while(!s4.empty())//當(dāng)有孩子節(jié)點(diǎn)時(shí)繼續(xù)搜索
			{
				id4 = (String)s4.pop();
				sql = "select count(id) from news.menuchild where isthis=1 and IDPARENT="+id4;
				ResultSet rs4 = selectRecord(sql);
				try{
					int count = 0;
					if(rs4.next())
						count = rs4.getInt(1);
					if(count>0)
					{
						sql = "select id from news.menuchild where isthis=1 and  IDPARENT="+id4;					
						ResultSet rs_t = selectRecord(sql);
						try{
							while(rs_t.next())
							{
								String id_t = rs_t.getString("id");	
								s4.push(id_t);
								v_child.add(id_t);
							}
						}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)運(yùn)行時(shí)出錯(cuò):"+e);}
						finally{
							if(rs_t!=null)try{ stmt = rs_t.getStatement(); rs_t.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
							if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
						}
					}
				}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)運(yùn)行時(shí)出錯(cuò):"+e);}
				finally{
					if(rs4!=null)try{ stmt = rs4.getStatement(); rs4.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
					if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
				}
			}
		}
		//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
		//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		

		//檢索文章編號(hào)
		sql = "";
		for(int i=0;i<v_menu.size();i++)
		{
			if(!sql.equals(""))sql += " union ";
			sql += "select id from news.article where whichtable='1' and ifshow='1' and ORGANID='00000000000000000000' and menuid="+(String)v_menu.get(i);
		}
		for(int i=0;i<v_child.size();i++)
		{
			if(!sql.equals(""))sql += " union ";
			sql += "select id from news.article where whichtable='0' and ifshow='1' and ORGANID='00000000000000000000' and menuid="+(String)v_child.get(i);
		}

		sql = "select id,title,addtime,hits from news.article where id in ("+sql+") order by edittime desc";
		rs = selectRecord(sql);
		int i = 0;
		ResultSetMetaData rsmd = rs.getMetaData();
		int cols = 0;
		cols = rsmd.getColumnCount();				
		while(rs.next())
		{
			Hashtable hash = new Hashtable();
			for(i=1;i<=cols;i++)
			{
				String field = ds.toString(rsmd.getColumnName(i));
				String value = ds.toString(rs.getString(i));
				hash.put(field,value);
			}
			v_article.add(hash);//把文章信息存入
			i++;
			if(i==num)break;
		}
		}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)運(yùn)行時(shí)出錯(cuò):"+e);}
		finally{
			//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle1(String id1,String menu2)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		}
		if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		
		return v_article;
	}

	//根據(jù)一級(jí)菜單下的取得文章------------------------------------------------------------------------
	public Vector getArticle(String id1,String menu2,int cur,int records)
	{
		Vector v_menu = new Vector();
		Vector v_article = new Vector();
		if(id1.equals(""))
			return v_article;

		//檢索菜單表編號(hào)		
		String sql = "select num from news.nb_zyszb where id=20";  
		ResultSet rs = null;
		Statement stmt = null;
		try{
		int num = records;
		if(num==0)
		{
			rs = selectRecord(sql);
			if(rs.next())
				num = rs.getInt(1);
		}
		//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
		//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		


		sql = "select ID from news.Menu where Id3!=0 and Id1="+id1+" and MENU2='"+menu2+"'";
		rs = selectRecord(sql);
		while(rs.next())
		{
			v_menu.add(rs.getString("ID"));
		}
		if(v_menu.isEmpty()) return v_menu;

		//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
		//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		
		//檢索子菜單表編號(hào)
		sql = "select ID from news.menuchild where isthis=0 and IDPARENT in (select ID from news.Menu where Id3!=0 and Id1="+id1+" and MENU2='"+menu2+"')";
		rs = selectRecord(sql);
		Vector v_child = new Vector();
		while(rs.next())
		{
			String id4 = rs.getString("ID");
			v_child.add(id4);
			Stack s4 = new Stack();
			s4.push(id4);

			while(!s4.empty())//當(dāng)有孩子節(jié)點(diǎn)時(shí)繼續(xù)搜索
			{
				id4 = (String)s4.pop();
				sql = "select count(id) from news.menuchild where isthis=1 and IDPARENT="+id4;
				ResultSet rs4 = selectRecord(sql);
				int count = 0;
				try{
					if(rs4.next())
						count = rs4.getInt(1);
					if(count>0)
					{
						sql = "select id from news.menuchild where isthis=1 and  IDPARENT="+id4;					
						ResultSet rs_t = selectRecord(sql);
						try{
							while(rs_t.next())
							{
								String id_t = rs_t.getString("id");	
								s4.push(id_t);
								v_child.add(id_t);
							}
						}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)運(yùn)行時(shí)出錯(cuò):"+e);}
						finally{
							if(rs_t!=null) try{ stmt = rs_t.getStatement(); rs_t.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
							if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
						}
					}
				}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)運(yùn)行時(shí)出錯(cuò):"+e);}
				finally{
					if(rs4!=null)try{ stmt = rs4.getStatement(); rs4.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
					if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
				}
			}
		}

		//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
		//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		
		//檢索文章編號(hào)
		sql = "";
		for(int i=0;i<v_menu.size();i++)
		{
			if(!sql.equals(""))sql += " union ";
			sql += "select id from news.article where whichtable='1' and ifshow='1' and ORGANID='00000000000000000000' and menuid="+(String)v_menu.get(i);
		}
		for(int i=0;i<v_child.size();i++)
		{
			if(!sql.equals(""))sql += " union ";
			sql += "select id from news.article where whichtable='0' and ifshow='1' and ORGANID='00000000000000000000' and menuid="+(String)v_child.get(i);
		}

		//計(jì)算總頁數(shù)
		rs = selectRecord("select count(id) from news.article where id in ("+sql+") order by edittime desc");
		rs.next();
		int rows = rs.getInt(1);
		int sum = rows/records;
		if(rows%records!=0||rows==0)sum++;
		v_article.add(""+sum);
		v_article.add(""+rows);
		int pos = (cur-1)*records+1;

		//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
		//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		

		sql = "select id,title,addtime,hits from news.article where id in ("+sql+") order by edittime desc";
		rs = selectRecord(sql);
		int i = 0;
		ResultSetMetaData rsmd = rs.getMetaData();
		int cols = 0;
		cols = rsmd.getColumnCount();	
		while(rs.next())
		{
			i++;
			if(i<pos)continue;
			Hashtable hash = new Hashtable();
			for(int j=1;j<=cols;j++)
			{
				String field = ds.toString(rsmd.getColumnName(j));
				String value = ds.toString(rs.getString(j));
				hash.put(field,value);
			}
			v_article.add(hash);//把焦點(diǎn)文章信息存入
			if((v_article.size()-2)==num)break;
			if(i==rows)break;
		}
			//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
	

		}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)運(yùn)行時(shí)出錯(cuò):"+e);}
		finally{
			//if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			//if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id1,String menu2,int cur,int records)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		}if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id)關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getArticle(String id)關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		
		return v_article;
	}


	//生三級(jí)以下成樹并返回根節(jié)點(diǎn)--------------------------------------------------------------------
	public Vector buildTree()
	{	

		Vector vt = new Vector();
		String sql =" Select * from news.MENU Where ID1 = "+id1+" and ID2 = "+id2+" and ID3 = 0";
		ResultSet rs1 = selectRecord(sql);
		Statement stmt = null;
		try{
		ResultSetMetaData rsmd1 = rs1.getMetaData();
		int cols1 = rsmd1.getColumnCount();
		if(rs1.next())
		{			

			Hashtable hash1 = new Hashtable();
			for (int i1 = 1; i1 <= cols1; i1++) 
			{
				String field1 = ds.toString(rsmd1.getColumnName(i1));
				String value1 = ds.toString(rs1.getString(i1));
				hash1.put(field1, value1);
			}
			DefaultMutableTreeNode root1 = new DefaultMutableTreeNode(hash1);//生成二級(jí)節(jié)點(diǎn),二級(jí)版面
			sql = "select * from news.menu where id1="+id1+" and id2="+id2+" and id3!=0 order by id3";
			ResultSet rs2 = selectRecord(sql);
			MenuChildBean mcb = null;
			try{
			ResultSetMetaData rsmd2 = rs2.getMetaData();
			int cols2 = rsmd2.getColumnCount();	
			mcb = new MenuChildBean();		
			while(rs2.next())
			{
				Hashtable hash2 = new Hashtable();
				for (int i2 = 1; i2 <= cols2; i2++) 
				{
					String field2 = ds.toString(rsmd2.getColumnName(i2));
					String value2 = ds.toString(rs2.getString(i2));
					hash2.put(field2, value2);
				}
				DefaultMutableTreeNode root2 = new DefaultMutableTreeNode(hash2);//生成三級(jí)節(jié)點(diǎn),三級(jí)版面
				String str = (String)hash2.get("ID");
				mcb.setParentID(Integer.parseInt(str));
				Vector child = mcb.buildTree();
				if(child.size()!=0)
				{
					for(int a=0;a<child.size();a++)
					{
						DefaultMutableTreeNode root3 = (DefaultMutableTreeNode)child.get(a);
						root2.add(root3);
					}
				}
				root1.add(root2);
			}
			vt.add(root1);
			}catch(Exception e){System.out.println("MainBean.buildTree()運(yùn)行時(shí)出錯(cuò):"+e);}
			finally{
				if(mcb!=null) mcb.closeConn();
				if(rs2!=null)try{ stmt = rs2.getStatement(); rs2.close();}catch(Exception e){System.out.println("MainBean.buildTree()關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
				if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.buildTree()關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
			}
		}
		}catch(Exception e){System.out.println("MainBean.buildTree()運(yùn)行時(shí)出錯(cuò):"+e);}
		finally{
			if(rs1!=null)try{ stmt = rs1.getStatement(); rs1.close();}catch(Exception e){System.out.println("MainBean.buildTree()關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.buildTree()關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		}
		return vt;
	}	


	//取得所有首頁圖片新聞-------------------------------------------------------------------------------
	public Vector getPicNew()
	{
		Vector vect = new Vector();
		String sql = "";
		sql = " select * from news.ARTICLE where IFSHOW = '1' and IFIMG='1' and IFHEAD='1' and ORGANID='00000000000000000000' order by edittime desc";
		ResultSet rs = selectRecord(sql);
		Statement stmt = null;
		try
		{
			//取得列數(shù)和列名
			ResultSetMetaData rsmd = rs.getMetaData();
			int cols = rsmd.getColumnCount();
			while(rs.next())
			{	
				Hashtable hash = new Hashtable();
				for(int i=1;i<=cols;i++)
				{
					String field = ds.toString(rsmd.getColumnName(i));
					String value = ds.toString(rs.getString(i));
					hash.put(field,value);
				}
				vect.add(hash);
			}
		}catch(Exception e){System.out.println("MainBean.getPicNew()運(yùn)行時(shí)出錯(cuò):"+e);}
		finally{
			if(rs!=null)try{ stmt = rs.getStatement(); rs.close();}catch(Exception e){System.out.println("MainBean.getPicNew()關(guān)閉記錄集rs時(shí)出錯(cuò)"+e);}
			if(stmt!=null) try{stmt.close();}catch(Exception e){System.out.println("MainBean.getPicNew()關(guān)閉聲明時(shí)statement出錯(cuò)"+e);}		
		}
		return vect;	

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲人妖av一区二区| 激情六月婷婷久久| 久久久久久久久蜜桃| 日韩一区国产二区欧美三区| 在线视频欧美精品| 卡一卡二国产精品| 亚洲男女毛片无遮挡| 色欧美片视频在线观看| 91丨porny丨在线| 91麻豆福利精品推荐| 色综合中文字幕| 在线免费视频一区二区| 欧美精品v国产精品v日韩精品| 欧美日韩久久一区二区| 欧美精品亚洲一区二区在线播放| 777午夜精品视频在线播放| 日韩一二三四区| 国产日韩v精品一区二区| 国产精品三级av| 亚洲福利视频一区| 久久国产婷婷国产香蕉| 丰满少妇久久久久久久| 色视频一区二区| 日韩一区二区三| 中文字幕乱码亚洲精品一区| 亚洲欧美经典视频| 日本不卡一二三| 成人动漫中文字幕| 91精品国产aⅴ一区二区| 久久久精品一品道一区| 亚洲一区二区五区| 久久国产成人午夜av影院| 大桥未久av一区二区三区中文| 91蜜桃在线观看| 欧美电影免费观看完整版| 日本一区二区综合亚洲| 香港成人在线视频| 国产xxx精品视频大全| 欧美日韩成人在线| 中文字幕不卡在线| 毛片一区二区三区| 在线亚洲一区二区| 欧美极品少妇xxxxⅹ高跟鞋| 日韩精品乱码av一区二区| 99久久伊人精品| 欧美精品一区男女天堂| 精品1区2区在线观看| 国产麻豆精品在线观看| 亚洲免费电影在线| 久久99国产精品尤物| 色综合久久88色综合天天| 2024国产精品视频| 天堂影院一区二区| 91浏览器入口在线观看| 国产日韩欧美高清在线| 久久精品99久久久| 欧美一区国产二区| 亚洲二区视频在线| 91麻豆国产福利在线观看| 国产欧美综合在线观看第十页| 日韩 欧美一区二区三区| 91国偷自产一区二区三区成为亚洲经典| 日韩精品一区二区三区视频播放 | 日本亚洲天堂网| av男人天堂一区| 国产欧美日韩在线| 国产高清在线精品| 26uuu精品一区二区 | 久久免费美女视频| 久久国产尿小便嘘嘘尿| 日韩欧美国产一二三区| 日产国产高清一区二区三区| 欧美日韩国产一区| 午夜精品视频一区| 欧美精品丝袜中出| 日本不卡不码高清免费观看| 日韩无一区二区| 精品在线亚洲视频| 91精品91久久久中77777| 2020国产精品| 中文字幕第一区综合| 懂色一区二区三区免费观看 | 国产成人免费网站| 国产夜色精品一区二区av| 国产一区二区91| 精品久久久久香蕉网| 美国精品在线观看| 欧美国产激情一区二区三区蜜月| 国产成人免费在线| 亚洲欧美日韩在线不卡| www.色精品| 亚洲裸体xxx| 欧美精三区欧美精三区| 精品一区二区久久| 国产精品不卡在线| 欧美午夜影院一区| 麻豆国产精品一区二区三区| 国产亚洲制服色| 91在线一区二区三区| 五月天精品一区二区三区| 精品国产网站在线观看| 99久久伊人网影院| 免费在线观看一区二区三区| 日本一区二区三区国色天香| 一本大道久久a久久综合婷婷| 日韩在线一二三区| 中文字幕第一区二区| 欧美巨大另类极品videosbest| 国内偷窥港台综合视频在线播放| 亚洲人亚洲人成电影网站色| 日韩欧美一级片| 91在线视频18| 韩国欧美国产1区| 亚洲激情图片小说视频| 精品国产成人系列| 欧洲精品在线观看| 久久激情综合网| 亚洲综合在线免费观看| 久久精品人人做人人综合 | 日本欧美大码aⅴ在线播放| 亚洲精品一区在线观看| 一本色道亚洲精品aⅴ| 久久99深爱久久99精品| 亚洲国产一区二区a毛片| 国产日韩欧美麻豆| 日韩美女一区二区三区| 91国偷自产一区二区使用方法| 图片区小说区区亚洲影院| 日韩毛片高清在线播放| 久久婷婷久久一区二区三区| 欧美三级电影精品| 99在线视频精品| 久久99精品国产麻豆婷婷| 国产精品的网站| 欧美大片日本大片免费观看| 欧美性感一区二区三区| 成人app软件下载大全免费| 麻豆精品久久久| 五月天国产精品| 亚洲午夜久久久久久久久久久| 亚洲欧洲成人精品av97| 久久网站最新地址| 成人黄色小视频| 丁香五精品蜜臀久久久久99网站| 狠狠久久亚洲欧美| 一区二区三区国产精华| 亚洲欧美aⅴ...| 国产精品私房写真福利视频| 精品日韩在线一区| 欧美丝袜丝nylons| 欧美日韩一级片在线观看| 91小视频免费看| 99精品一区二区| 一区二区三区资源| 一区二区三区美女视频| 欧美精品一区视频| 亚洲国产精品二十页| 国产欧美一区二区精品性色超碰| 欧洲中文字幕精品| 欧美亚洲尤物久久| 欧美三电影在线| 欧美一区在线视频| 在线观看不卡视频| 欧美日韩亚洲高清一区二区| 欧美精品日韩精品| 欧美三区在线观看| 欧美唯美清纯偷拍| 8x福利精品第一导航| 精品久久国产97色综合| 2021国产精品久久精品| 精品少妇一区二区三区在线视频| 一本久久综合亚洲鲁鲁五月天 | 久久精品国产久精国产| 91国产免费看| 欧美猛男gaygay网站| 欧美一区二区精品久久911| 26uuu精品一区二区| 亚洲色图在线播放| 日韩中文字幕一区二区三区| 卡一卡二国产精品| 成人午夜视频在线观看| 欧美午夜片在线看| 日韩欧美国产精品一区| 欧美激情中文字幕一区二区| 亚洲三级在线看| 日韩成人伦理电影在线观看| 日韩高清不卡一区二区三区| 久久精品国内一区二区三区| 成人自拍视频在线| 在线观看日韩毛片| 久久九九国产精品| 亚洲激情网站免费观看| 激情综合色播五月| 在线观看免费一区| 欧美国产亚洲另类动漫| 婷婷一区二区三区| 成人v精品蜜桃久久一区| 欧美男女性生活在线直播观看| 91精品综合久久久久久| 久久精品国产第一区二区三区|