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

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

?? mainbean.java

?? 新聞發(fā)布系統(tǒng)
?? JAVA
?? 第 1 頁 / 共 5 頁
字號(hào):
		//檢索子菜單表編號(hào)
		sql = "select ID from menuchild where isthis=0 and IDPARENT in (select ID from Menu where id3<>0 and Id1="+id1+" and MENU2='"+menu2+"')";
		rs = selectRecord(sql);
		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 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 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 += ",";
			sql += (String)v_menu.get(i);
			//if(!sql.equals(""))sql += " union ";
			//sql += "select id from 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 += ",";
			sql += (String)v_menu.get(i);
			//if(!sql.equals(""))sql += " union ";
			//sql += "select id from article where whichtable='0' and ifshow='1' and ORGANID='00000000000000000000' and menuid="+(String)v_child.get(i);
		}

		sql = "select id from article where whichtable='1' and ifshow='1' and ORGANID='00000000000000000000' and menuid in ("+sql+")";
		
		sql = "select id,title,addtime,hits from 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 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 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 menuchild where isthis=0 and IDPARENT in (select ID from 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 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 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 += ",";
			sql += (String)v_menu.get(i);
			//if(!sql.equals(""))sql += " union ";
			//sql += "select id from 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 += ",";
			sql += (String)v_menu.get(i);
			//if(!sql.equals(""))sql += " union ";
			//sql += "select id from article where whichtable='0' and ifshow='1' and ORGANID='00000000000000000000' and menuid="+(String)v_child.get(i);
		}

		sql = "select id from article where whichtable='0' and ifshow='1' and ORGANID='00000000000000000000' and menuid in ("+sql+")";
		

		//計(jì)算總頁數(shù)
		rs = selectRecord("select count(id) from 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 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 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 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 ID,MENUID,TITLE,TOPICID,FROMSITE,WRITER,ADDTIME,KEYWORD,IFHEAD,IFGOOD,IFSHOW,IMG,HITS,ORGID,EDITER,EDITTIME,EDITIP,TIMES,FTPFILE,WHICHTABLE,DEMOID,IFIMG,VOTE,ORGANID,WZLX,AUTHOR,OLDORGID,STRSIZE,CURSIZE from 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())

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲日本va午夜在线影院| 午夜国产精品影院在线观看| 久久久www免费人成精品| 欧美精品123区| 欧美美女喷水视频| 欧美精品99久久久**| 欧美日韩五月天| 91国产成人在线| 老司机精品视频在线| 日本中文在线一区| 亚洲香肠在线观看| 亚洲精品视频免费观看| 国产精品电影院| 中文字幕av一区二区三区高| 久久久不卡网国产精品一区| 欧美成人精品福利| 欧美一区二区三区精品| 欧美日韩高清一区二区| 欧美日韩亚洲综合一区二区三区| 色成人在线视频| 91社区在线播放| 99久久99久久精品免费观看 | 亚洲综合激情小说| 亚洲少妇中出一区| 亚洲伦在线观看| 亚洲精品欧美激情| 亚洲欧美色综合| 亚洲精品乱码久久久久| 亚洲精品中文在线观看| 久久精品国产一区二区三 | 韩国一区二区三区| 国产在线精品不卡| 国产精品自拍三区| 成人性视频免费网站| av在线一区二区三区| 99久精品国产| 日本道精品一区二区三区| 91成人免费在线| 欧美日韩精品一区视频| 91精品国产综合久久精品| 欧美妇女性影城| 精品欧美乱码久久久久久1区2区 | 欧美经典三级视频一区二区三区| 国产女人18毛片水真多成人如厕| 中文一区在线播放| 亚洲精品写真福利| 天天色天天操综合| 午夜影院久久久| 亚洲一卡二卡三卡四卡无卡久久| 一区二区三区成人| 亚洲h精品动漫在线观看| 亚洲成人av福利| 视频在线观看一区二区三区| 青青草国产成人av片免费| 日韩精品午夜视频| 青青国产91久久久久久| 韩国女主播成人在线| 国产在线视频不卡二| 色女孩综合影院| 日韩一区二区精品在线观看| 国产欧美精品国产国产专区| 亚洲综合精品自拍| 国产一区福利在线| 一本到三区不卡视频| 日韩一区二区影院| 国产精品激情偷乱一区二区∴| 一级中文字幕一区二区| 久久91精品国产91久久小草| 99这里只有久久精品视频| 欧美精品在线一区二区三区| 久久日韩精品一区二区五区| 亚洲欧美韩国综合色| 蜜桃av一区二区| 99精品视频在线免费观看| 日韩一级成人av| 亚洲三级理论片| 免费久久精品视频| 99久久综合狠狠综合久久| 日韩一级黄色大片| 亚洲欧美国产77777| 极品美女销魂一区二区三区免费| 色综合中文综合网| 美国十次综合导航| jlzzjlzz国产精品久久| 欧美色综合天天久久综合精品| 亚洲精品在线免费播放| 亚洲五码中文字幕| 成人综合婷婷国产精品久久| 7777精品伊人久久久大香线蕉经典版下载| 国产欧美中文在线| 日本特黄久久久高潮| 91丨九色丨国产丨porny| 久久综合九色综合97_久久久| 亚洲最大色网站| 成人黄色在线视频| 亚洲精品一区二区三区香蕉| 午夜视频久久久久久| 91丨porny丨最新| 欧美激情综合五月色丁香小说| 日本不卡一二三| 在线亚洲精品福利网址导航| 国产精品视频一二三区| 国精品**一区二区三区在线蜜桃| 欧美曰成人黄网| 综合色天天鬼久久鬼色| 国产精品一区二区你懂的| 日韩一区二区三区免费观看| 亚洲综合图片区| 一本高清dvd不卡在线观看| 国产精品视频免费看| 国产精品一卡二卡| 精品国产亚洲一区二区三区在线观看| 亚洲成人手机在线| 在线免费观看日韩欧美| 亚洲另类在线制服丝袜| 成人sese在线| 国产精品的网站| 国产精品18久久久久久久久久久久| 制服丝袜av成人在线看| 爽好多水快深点欧美视频| 欧美三级日韩三级国产三级| 亚洲日本va午夜在线电影| 91在线一区二区| 最新欧美精品一区二区三区| www.欧美日韩国产在线| 国产精品国产三级国产aⅴ无密码| 国产伦精品一区二区三区免费| 欧美大度的电影原声| 狠狠色狠狠色综合| 26uuu久久综合| 国产乱理伦片在线观看夜一区| 久久毛片高清国产| 国产99久久久国产精品潘金 | 欧美成人艳星乳罩| 久99久精品视频免费观看| www激情久久| 国产精品资源网| 国产精品美女一区二区三区| 成人av免费在线播放| 亚洲视频免费在线观看| 在线看国产一区二区| 亚洲h动漫在线| 欧美不卡一二三| 国产999精品久久久久久| 中文字幕一区二区不卡| 91久久线看在观草草青青| 五月综合激情婷婷六月色窝| 56国语精品自产拍在线观看| 久久精品国产网站| 久久中文字幕电影| 99精品视频中文字幕| 亚洲一区二区三区美女| 欧美综合一区二区三区| 亚洲激情男女视频| 欧美三级日韩三级| 天天亚洲美女在线视频| 日韩免费观看2025年上映的电影| 美腿丝袜亚洲综合| 欧美国产精品专区| 91看片淫黄大片一级在线观看| 视频一区视频二区中文| 久久久久久9999| 色哟哟日韩精品| 美女免费视频一区二区| 国产精品色噜噜| 欧美久久久影院| 国产iv一区二区三区| 亚洲在线免费播放| 久久综合色8888| 欧美日韩一区二区三区四区五区 | 精品国产精品网麻豆系列| 国产不卡视频一区二区三区| 亚洲国产视频一区| 久久亚洲二区三区| 色综合久久综合中文综合网| 美女一区二区三区| 亚洲色图视频免费播放| 日韩女优av电影在线观看| av电影在线观看一区| 日本亚洲一区二区| 亚洲色图都市小说| 精品国产91洋老外米糕| 在线精品视频小说1| 国产一区二区三区免费看| 亚洲成人手机在线| 国产精品久久久久国产精品日日 | 欧洲精品中文字幕| 国产精品888| 日韩电影免费一区| 亚洲三级视频在线观看| 欧美电影免费观看高清完整版在线观看| 国产成人免费视频网站| 午夜伦理一区二区| 18涩涩午夜精品.www| 亚洲精品一区二区在线观看| 欧美日本在线看| 色悠悠久久综合| 成人黄色网址在线观看| 国产一区欧美一区| 日本欧美在线观看|