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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? dbconnmanager.java~191~

?? java版學生信息管理系統
?? JAVA~191~
?? 第 1 頁 / 共 3 頁
字號:
     if (statement != null)try {
       statement.close();
     }
     catch (SQLException ignore) {}
     if (con != null)try {
       con.close();
     }
     catch (SQLException ignore) {}
     finally {
       releaseConnection("Access", con);
     }
   }
   return result;
 }

//學生成績統計
 public Vector getSum(String aclass, String aschool, String grade, float first, float last) {
   Connection con = null;
   PreparedStatement ps = null;
   ResultSet rs = null;
   Vector resultdate = new Vector();
   String sqlquery = null;
   try {
     //全校成績統計
     if (!aschool.equals("")) {
       if (grade.equals("chinese"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,chinese,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where chinese between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,chinese,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where chinese between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,chinese,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where chinese " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else if (grade.equals("math"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,math,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where math between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,math,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where math between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,math,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where math " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else if (grade.equals("english"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,english,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where english between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,english,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where english between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,english,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where english " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else if (grade.equals("composite"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,composite,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where composite between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,composite,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where composite between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,composite,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where composite " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else {
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,total,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where total between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,total,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where total between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,total,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where total " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       }
     }
     if (!aclass.equals("")) { //班級成績統計
       if (aclass.equals("A2241")) {
         if (grade.equals("chinese"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,chinese,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where chinese between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else if (grade.equals("math"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,math,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where math between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else if (grade.equals("english"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,english,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where english between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else if (grade.equals("composite"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,composite,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where composite between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else {
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,total,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where total between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         }
       }
       else if (aclass.equals("A2242")) {
         if (grade.equals("chinese"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,chinese,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where chinese between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else if (grade.equals("math"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,math,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where math between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else if (grade.equals("english"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,english,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where english between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else if (grade.equals("composite"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,composite,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 "+
               "where composite between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else {
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,total,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where total between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         }
       }
       else if (aclass.equals("A2243")) {
         if (grade.equals("chinese"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,chinese,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where chinese between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else if (grade.equals("math"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,math,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where math between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else if (grade.equals("english"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,english,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where english between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else if (grade.equals("composite"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,composite,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where composite between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else {
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,total,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where total between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         }
       }
     }
     con = getConnection("Access");
     ps = con.prepareStatement(sqlquery);
     if (aschool.equals("全校"))
     {
       ps.setFloat(1, first);
       ps.setFloat(2, last);
       ps.setFloat(3, first);
       ps.setFloat(4, last);
       ps.setFloat(5, first);
       ps.setFloat(6, last);
     }else{
       ps.setFloat(1, first);
       ps.setFloat(2, last);
     }
     rs = ps.executeQuery();
     while (rs.next()) {
       resultdate.add(rs.getString("stu_id"));
       resultdate.add(rs.getString("name"));
       resultdate.add(rs.getString(grade));
       resultdate.add(rs.getString("class"));
     }
   }
   catch (SQLException e) {
     e.printStackTrace();
   }
   finally {
     if (rs != null)try {
       rs.close();
     }
     catch (SQLException ignore) {}
     if (ps != null)try {
       ps.close();
     }
     catch (SQLException ignore) {}
     if (con != null)try {
       con.close();
     }
     catch (SQLException ignore) {}
     finally {
       releaseConnection("Access", con);
     }
   }
   return resultdate;
 }

//學生統計
 public Vector getpeopleSum(String aclass, String aschool, String sumstr,String aethnic, String range1, String range2) {
   Connection con = null;
   PreparedStatement ps = null;
   ResultSet rs = null;
   Vector resultdate = new Vector();
   String sqlquery = null;
   try {
     //全校學生統計
     if (aschool.equals("全校")){
       if (sumstr.equals("男"))
         sqlquery =
             "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
             "where sex = '男' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2242 "+
             "where sex = '男' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2243 "+
             "where sex = '男'";
       else if (sumstr.equals("女"))
         sqlquery =
             "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
             "where sex = '女' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2242 "+
             "where sex = '女' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2243 "+
             "where sex = '女'";
       else if (sumstr.equals("民族"))
         sqlquery =
             "SELECT stu_id,name,ethnic,class FROM stuinf_A2241 " +
             "where ethnic LIKE '"+aethnic+"' "+
             " UNION SELECT stu_id,name,ethnic,class FROM stuinf_A2242 "+
             "where ethnic LIKE '"+aethnic+"' " +
             "UNION SELECT stu_id,name,ethnic,class FROM stuinf_A2243 "+
             "where ethnic LIKE '"+aethnic+"'";
       else if (sumstr.equals("出生日期"))
         sqlquery =
             "SELECT stu_id,name,birthday,class FROM stuinf_A2241 " +
             "where birthday between "+range1+" and "+range2+
             " order by birthday ASC "+
             " UNION SELECT stu_id,name,birthday,class FROM stuinf_A2242 "+
             "where birthday between "+range1+" and "+range2+
             " order by birthday ASC "+
             " UNION SELECT stu_id,name,birthday,class FROM stuinf_A2243 "+
             "where birthday between "+range1+ " and "+range2+" order by birthday ASC";
     }
     if (!aclass.equals("")) { //班級成績統計
       if (aclass.equals("A2241")) {
         if (sumstr.equals("男"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
               "where sex = '男' ";
         else if (sumstr.equals("女"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
               "where sex = '女' ";
         else if (sumstr.equals("民族"))
           sqlquery =
               "SELECT stu_id,name,ethnic,class FROM stuinf_A2241 " +
               "where ethnic LIKE '"+aethnic+"'";
         else if (sumstr.equals("出生日期"))
           sqlquery =
               "SELECT stu_id,name,birthday,class FROM stuinf_A2241 " +
               "where birthday between " +range1+ " and "+range2+" order by birthday ASC";
       }
       else if (aclass.equals("A2242")) {
         if (sumstr.equals("男"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '男' ";
         else if (sumstr.equals("女"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '女' ";
         else if (sumstr.equals("民族"))
           sqlquery =
               "SELECT stu_id,name,ethnic,class FROM stuinf_A2242 " +
               "where ethnic LIKE '"+aethnic+"'";
         else if (sumstr.equals("出生日期"))
           sqlquery =
               "SELECT stu_id,name,birthday,class FROM stuinf_A2242 " +
               "where birthday between "+range1+" and "+range2+
               " order by birthday ASC";
       }
       else if (aclass.equals("A2243")) {
         if (sumstr.equals("男"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '男' ";
         else if (sumstr.equals("女"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '女' ";
         else if (sumstr.equals("民族"))
           sqlquery =
               "SELECT stu_id,name,ethnic,class FROM stuinf_A2242 " +
               "where ethnic LIKE '"+aethnic+"'";
         else if (sumstr.equals("出生日期"))
           sqlquery =
               "SELECT stu_id,name,birthday,class FROM stuinf_A2242 " +
               "where birthday between "+range1+" and "+range2+
               " order by birthday ASC";
       }
     }
     con = getConnection("Access");
     ps = con.prepareStatement(sqlquery);
     rs = ps.executeQuery();
     while (rs.next()) {
       resultdate.add(rs.getString("stu_id"));
       resultdate.add(rs.getString("name"));
       resultdate.addElement(rs.getString(3));
       resultdate.add(rs.getString("class"));
     }
   }
   catch (SQLException e) {
     e.printStackTrace();
   }
   finally {
     if (rs != null)try {
       rs.close();
     }
     catch (SQLException ignore) {}
     if (ps != null)try {
       ps.close();
     }
     catch (SQLException ignore) {}
     if (con != null)try {
       con.close();
     }
     catch (SQLException ignore) {}
     finally {
       releaseConnection("Access", con);
     }
   }
   return resultdate;
 }

//檢驗輸入的班級號是否合法
 public boolean checkClass(String aclass)
 {
   boolean checkflag =  true;
   if(!aclass.equals("A2241")&&!aclass.equals("A2242")&&!aclass.equals("A2243"))
     checkflag = false;
   else checkflag = true;
   return checkflag;
 }

 //檢驗輸入的學號是否合法
 public boolean checkStuid(String userid) {
   boolean checkflag = true;
   Pattern pattern;
   pattern = Pattern.compile("[0-9]");
   for (int i = 0; i < userid.length(); i++) {
     String str = userid.substring(i, i + 1);
     Matcher matcher = pattern.matcher(str);
     if (!matcher.matches()) {
       checkflag = false;
       break;
     }
     else checkflag = true;
   }
 return checkflag;
}

  /*關閉所有連接*/
  public synchronized void closeConns() {
    Enumeration allPools = connPools.elements();
    while (allPools.hasMoreElements()) {
      DBConnPool pool = (DBConnPool) allPools.nextElement();
      pool.closeConn();
    }
  }

  /*創建連接池*/
  private void createPools() {
    for (int i = 0; i < poolnames.size(); i++) {
      String poolname = poolnames.elementAt(i).toString();
      String drivername = drivernames.elementAt(i).toString();
      String dbid = dbids.elementAt(i).toString();
      String username = usernames.elementAt(i).toString();
      String passwd = passwds.elementAt(i).toString();
      int maxconn = 0;
      try {
        maxconn = Integer.parseInt(maxconns.elementAt(i).toString());
      }
      catch (NumberFormatException e) {
        e.printStackTrace();
      }
      DBConnPool pool = new DBConnPool(poolname, drivername, dbid, username,
                                       passwd, maxconn);
      connPools.put(poolname, pool);
    }
  }
}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性三三影院| 欧美性生活久久| 欧美丝袜自拍制服另类| 日本不卡一区二区| 日韩欧美在线123| 大美女一区二区三区| 中文字幕日韩av资源站| 欧美一级高清片| 色哟哟日韩精品| 成人午夜碰碰视频| 日韩电影一区二区三区| 国产女人18毛片水真多成人如厕 | 欧美卡1卡2卡| av在线一区二区三区| 另类中文字幕网| 午夜不卡av免费| 亚洲欧美色综合| 国产精品污污网站在线观看| 精品毛片乱码1区2区3区| 欧美网站大全在线观看| 成人激情黄色小说| 国产乱码精品一品二品| 麻豆久久久久久| 日本aⅴ精品一区二区三区| 亚洲一区二区偷拍精品| 亚洲视频一区二区在线观看| 久久精品在线免费观看| 亚洲精品在线三区| 日韩欧美在线观看一区二区三区| 欧美日韩免费高清一区色橹橹| 99久久久精品| 99re热这里只有精品视频| 懂色一区二区三区免费观看| 国产一区二区三区四| 麻豆91精品视频| 美国十次了思思久久精品导航| 亚洲大片精品永久免费| 亚洲综合视频在线观看| 夜夜精品浪潮av一区二区三区| 精品99999| 91麻豆精品国产91久久久久久久久| 91网站最新地址| 91毛片在线观看| 91老师国产黑色丝袜在线| 成人av在线资源| 97国产一区二区| 91久久国产最好的精华液| 日本韩国欧美在线| 欧美三级资源在线| 欧美理论在线播放| 91精品欧美一区二区三区综合在| 欧美一区二区在线免费播放| 国产91在线看| 成人综合在线视频| 成人av午夜影院| 成年人午夜久久久| 色婷婷国产精品久久包臀| 在线影视一区二区三区| 欧美年轻男男videosbes| 欧美一二三区在线观看| 精品卡一卡二卡三卡四在线| 久久精品人人做人人爽人人| 国产精品美女www爽爽爽| 一区二区三区中文字幕| 天堂影院一区二区| 久久99国产乱子伦精品免费| 国产福利一区在线| 日本道在线观看一区二区| 欧美日韩精品三区| 欧美精品一区视频| 国产精品乱码妇女bbbb| 亚洲成av人影院| 免费人成黄页网站在线一区二区| 黄色日韩网站视频| 99国产精品国产精品毛片| 欧美日韩成人综合天天影院 | 欧美日韩一区在线观看| 欧美成人在线直播| 自拍av一区二区三区| 石原莉奈一区二区三区在线观看| 狠狠色丁香婷婷综合| 成人福利在线看| 欧美精品第1页| 国产亚洲精品中文字幕| 亚洲国产美国国产综合一区二区 | 91久久国产综合久久| 日韩欧美区一区二| 亚洲欧洲精品一区二区三区不卡| 日日夜夜一区二区| 成人小视频免费观看| 91精品国产一区二区三区蜜臀 | 91精品国产综合久久久久久久| 国产欧美视频在线观看| 亚洲va中文字幕| 国产98色在线|日韩| 欧美日本一区二区三区| 国产精品不卡视频| 蜜桃av一区二区三区| 色菇凉天天综合网| 久久久噜噜噜久久人人看| 亚洲不卡在线观看| 成人18视频日本| 亚洲精品在线三区| 无码av中文一区二区三区桃花岛| 成人av资源站| 精品国产精品一区二区夜夜嗨| 亚洲最快最全在线视频| 成人一区二区视频| 日韩视频免费观看高清完整版| 亚洲精品视频在线观看免费| 国产+成+人+亚洲欧洲自线| 3d动漫精品啪啪一区二区竹菊 | 国产成人av自拍| 欧美成人a视频| 亚洲成人免费看| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 热久久免费视频| 欧美午夜精品免费| 亚洲天堂免费在线观看视频| 丰满少妇久久久久久久| 欧美mv和日韩mv国产网站| 三级精品在线观看| 欧美中文一区二区三区| 亚洲免费在线看| 99re视频精品| 国产精品电影院| 成人精品视频网站| 国产亚洲精久久久久久| 国产乱码精品一区二区三区忘忧草 | 欧美日韩成人综合在线一区二区| 成人免费一区二区三区视频| 豆国产96在线|亚洲| 国产欧美综合色| 国产高清精品在线| 久久精品欧美一区二区三区麻豆| 精品一区二区三区久久| 精品三级在线看| 国产一区二区福利视频| 久久久精品免费网站| 国产精品一区二区三区网站| 国产色产综合色产在线视频| 国产福利精品导航| 中文字幕不卡在线播放| 成人在线一区二区三区| 中文字幕在线不卡| 95精品视频在线| 亚洲一区二区三区美女| 欧美日韩成人综合天天影院 | 日本欧美韩国一区三区| 欧美一区二区黄色| 国产麻豆91精品| 最新日韩av在线| 精品视频一区 二区 三区| 日韩综合一区二区| 精品国产sm最大网站| 成人毛片视频在线观看| 一区二区三区在线不卡| 欧美色区777第一页| 免费观看一级特黄欧美大片| 国产午夜三级一区二区三| 一本久久a久久精品亚洲| 亚洲精品成a人| 欧美一区二区三区四区久久| 国产一二三精品| 亚洲日本电影在线| 欧美一区二区三区男人的天堂| 国产精品自拍网站| 亚洲欧美日韩国产综合| 91麻豆精品国产自产在线观看一区| 日韩av在线播放中文字幕| 日韩精品一区二区三区蜜臀| 高清视频一区二区| 国产精品免费视频一区| 欧美日韩精品免费观看视频| 美女一区二区三区| 久久久精品一品道一区| 在线亚洲人成电影网站色www| 亚洲chinese男男1069| 日韩一级片在线观看| 亚洲成a人片综合在线| 欧美一级搡bbbb搡bbbb| 国产精品综合视频| 日韩免费看的电影| 91同城在线观看| 日韩国产成人精品| 久久久一区二区三区捆绑**| 欧美中文字幕久久| 激情欧美一区二区三区在线观看| 国产精品无遮挡| 成人毛片在线观看| 免费黄网站欧美| 亚洲精品在线电影| 91免费在线看| 久久精品久久久精品美女| 欧美一级理论片| 一本久久综合亚洲鲁鲁五月天 | 香蕉乱码成人久久天堂爱免费| 欧美大度的电影原声| 91在线观看一区二区| 国产一区二区精品久久|