日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁技術文章
文章詳情頁

python mysql項目實戰及框架搭建過程

瀏覽:30日期:2022-06-17 09:59:59
前言

python+mysql.connector,demo實戰

框架搭建

說實話,其實沒有使用到框架,只是用了, python+mysql.connector模塊首先在開始虛擬環境:

(vega-j-vI5SDr) (vega) D:testpython-mysqlpython-mysqlvega>pip install mysql.connectorProcessing c:usersadministratorappdatalocalpipcachewheels7b14395aad423666e827dfe9a1fbcd111ac17171e7c9865d570780cemysql_connector-2.2.9-cp39-cp39-win_amd64.whlInstalling collected packages: mysql.connectorSuccessfully installed mysql.connector

python mysql項目實戰及框架搭建過程

源代碼地址

代碼實現 創建mysql連接池

#!/usr/bin/env python# _*_ coding: utf-8 _*_# @Time : 2021/6/6 13:16# @Author : zhaocunwei# @Version:V 0.1# @File : mysql_db.py# @desc :import mysql.connector.pooling__config = { 'host': 'localhost', 'port': 3306, 'user': 'root', 'password': 'root', 'database': 'vega'}try: pool = mysql.connector.pooling.MySQLConnectionPool(**__config,pool_size=10 )except Exception as e: print(e)

SQL腳本:

/*Navicat MariaDB Data TransferSource Server : localhost_3306Source Server Version : 100120Source Host : localhost:3306Source Database : vegaTarget Server Type : MariaDBTarget Server Version : 100120File Encoding : 65001Date: 2018-11-27 19:35:26*/SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure for t_news-- ----------------------------DROP TABLE IF EXISTS `t_news`;CREATE TABLE `t_news` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(40) NOT NULL, `editor_id` int(10) unsigned NOT NULL, `type_id` int(10) unsigned NOT NULL, `content_id` char(12) NOT NULL, `is_top` tinyint(3) unsigned NOT NULL, `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `state` enum(’草稿’,’待審批’,’已審批’,’隱藏’) NOT NULL, PRIMARY KEY (`id`), KEY `editor_id` (`editor_id`), KEY `type_id` (`type_id`), KEY `state` (`state`), KEY `create_time` (`create_time`), KEY `is_top` (`is_top`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;-- ------------------------------ Records of t_news-- ----------------------------INSERT INTO `t_news` VALUES (’1’, ’新聞標題1’, ’2’, ’1’, ’1’, ’1’, ’2018-11-22 18:55:56’, ’2018-11-22 18:55:56’, ’待審批’);-- ------------------------------ Table structure for t_role-- ----------------------------DROP TABLE IF EXISTS `t_role`;CREATE TABLE `t_role` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `role` (`role`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;-- ------------------------------ Records of t_role-- ----------------------------INSERT INTO `t_role` VALUES (’2’, ’新聞編輯’);INSERT INTO `t_role` VALUES (’1’, ’管理員’);-- ------------------------------ Table structure for t_type-- ----------------------------DROP TABLE IF EXISTS `t_type`;CREATE TABLE `t_type` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `type` (`type`)) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;-- ------------------------------ Records of t_type-- ----------------------------INSERT INTO `t_type` VALUES (’2’, ’體育’);INSERT INTO `t_type` VALUES (’5’, ’歷史’);INSERT INTO `t_type` VALUES (’4’, ’娛樂’);INSERT INTO `t_type` VALUES (’3’, ’科技’);INSERT INTO `t_type` VALUES (’1’, ’要聞’);-- ------------------------------ Table structure for t_user-- ----------------------------DROP TABLE IF EXISTS `t_user`;CREATE TABLE `t_user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` varchar(500) NOT NULL, `email` varchar(100) NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), KEY `username_2` (`username`)) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;-- ------------------------------ Records of t_user-- ----------------------------INSERT INTO `t_user` VALUES (’1’, ’admin’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’admin@163.com’, ’1’);INSERT INTO `t_user` VALUES (’2’, ’scott’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’scott@163.com’, ’1’);INSERT INTO `t_user` VALUES (’3’, ’test_1’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_1@163.com’, ’2’);INSERT INTO `t_user` VALUES (’4’, ’test_2’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_2@163.com’, ’2’);INSERT INTO `t_user` VALUES (’5’, ’test_3’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_3@163.com’, ’2’);INSERT INTO `t_user` VALUES (’6’, ’test_4’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_4@163.com’, ’2’);INSERT INTO `t_user` VALUES (’7’, ’test_5’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_5@163.com’, ’2’);INSERT INTO `t_user` VALUES (’8’, ’test_6’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_6@163.com’, ’2’);INSERT INTO `t_user` VALUES (’9’, ’test_7’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_7@163.com’, ’2’);INSERT INTO `t_user` VALUES (’10’, ’test_8’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_8@163.com’, ’2’);INSERT INTO `t_user` VALUES (’11’, ’test_9’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_9@163.com’, ’2’);INSERT INTO `t_user` VALUES (’12’, ’test_10’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_10@163.com’, ’2’);INSERT INTO `t_user` VALUES (’13’, ’test_11’, ’3E6BC27A781F0AC08BCFD78CC3DCE4CA’, ’test_11@163.com’, ’2’);

創建DAO程序

python mysql項目實戰及框架搭建過程

#!/usr/bin/env python# _*_ coding: utf-8 _*_# @Time : 2021/6/6 13:24# @Author : zhaocunwei# @Version:V 0.1# @File : user_dao.py# @desc : 用戶from db.mysql_db import poolclass UserDao: # 驗證用戶登錄 def login(self, username, password):try: con = pool.get_connection() cursor = con.cursor() sql = 'SELECT COUNT(*) FROM t_user WHERE username=%s AND ' 'AES_DECRYPT(UNHEX(password),’HelloWorld’)=%s' cursor.execute(sql, (username, password)) count = cursor.fetchone()[0] return True if count == 1 else Falseexcept Exception as e: print(e)finally: if 'con' in dir():con.close() # 查詢用戶角色 def search_user_role(self, username):try: con = pool.get_connection() cursor = con.cursor() sql = 'SELECT r.role FROM t_user u JOIN t_role r ON u.role_id=r.id' 'WHERE u.username=%s' cursor.execute(sql, (username)) role = cursor.fetchone()[0] return roleexcept Exception as e: print(e)finally: if 'con' in dir():con.close()

創建service層程序

#!/usr/bin/env python# _*_ coding: utf-8 _*_# @Time : 2021/6/6 13:57# @Author : zhaocunwei# @Version:V 0.1# @File : user_service.py# @desc :from db.user_dao import UserDaoclass UserService: # 創建私有對象 __user_dao = UserDao() # 創建登錄函數 def login(self, username, password):result = self.__user_dao.login(username, password)return result # 查詢用戶角色 def search_user_role(self, username):role = self.__user_dao.search_user_role(username)return role

安裝變色的模塊,O(∩_∩)O哈哈~

(vega-j-vI5SDr) (vega) D:testpython-mysqlpython-mysqlvega>pip install coloramaCollecting colorama Using cached colorama-0.4.4-py2.py3-none-any.whl (16 kB)Installing collected packages: coloramaSuccessfully installed colorama-0.4.4

CMD模擬登陸

#!/usr/bin/env python# _*_ coding: utf-8 _*_# @Time : 2021/6/6 14:08# @Author : zhaocunwei# @Version:V 0.1# @File : app.py# @desc : 控制臺程序from colorama import Fore, Stylefrom getpass import getpassfrom service.user_service import UserServiceimport osimport sys__user_service = UserService()while True: os.system('cls') print(Fore.LIGHTBLUE_EX, 'nt=========================') print(Fore.LIGHTBLUE_EX, 'nt歡迎使用新聞管理系統') print(Fore.LIGHTBLUE_EX, 'nt=========================') print(Fore.LIGHTGREEN_EX, 'nt1.登錄系統') print(Fore.LIGHTGREEN_EX, 'nt2.退出系統') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt == '1':username = input('nt用戶名:')password = getpass('nt密碼:')result = __user_service.login(username, password)# 登錄成功if result == True: # 查詢角色 role = __user_service.search_user_role(username) os.system('cls') while True:if role == '新聞編輯': print('test')elif role == '管理員': print(Fore.LIGHTGREEN_EX, 'nt1.新聞管理') print(Fore.LIGHTGREEN_EX, 'nt2.用戶管理') print(Fore.LIGHTRED_EX, 'ntabck.退出登錄') print(Fore.LIGHTRED_Ex, 'ntexit.退出系統') print(Style.RESET_ALL) opt = input('nt輸入操作編號:')else: print('nt登錄失敗') elif opt == '2':sys.exit(0)

python mysql項目實戰及框架搭建過程

from db.mysql_db import poolclass NewsDao: #查詢待審批新聞列表 def search_unreview_list(self,page):try: con=pool.get_connection() cursor=con.cursor() sql='SELECT n.id,n.title,t.type,u.username ' 'FROM t_news n JOIN t_type t ON n.type_id=t.id ' 'JOIN t_user u ON n.editor_id=u.id ' 'WHERE n.state=%s ' 'ORDER BY n.create_time DESC ' 'LIMIT %s,%s' cursor.execute(sql,('待審批',(page-1)*10,10)) result=cursor.fetchall() return resultexcept Exception as e: print(e)finally: if 'con' in dir():con.close() # 查詢待審批新聞的總頁數 def search_unreview_count_page(self):try: con=pool.get_connection() cursor=con.cursor() sql='SELECT CEIL(COUNT(*)/10) FROM t_news WHERE state=%s' cursor.execute(sql,['待審批']) count_page=cursor.fetchone()[0] return count_pageexcept Exception as e: print(e)finally: if 'con' in dir():con.close() #審批新聞 def update_unreview_news(self,id):try: con = pool.get_connection() con.start_transaction() cursor=con.cursor() sql='UPDATE t_news SET state=%s WHERE id=%s' cursor.execute(sql,('已審批',id)) con.commit()except Exception as e: if 'con' in dir():con.rollback() print(e)finally: if 'con' in dir():con.close() #查詢新聞列表 def search_list(self,page):try: con=pool.get_connection() cursor=con.cursor() sql='SELECT n.id,n.title,t.type,u.username ' 'FROM t_news n JOIN t_type t ON n.type_id=t.id ' 'JOIN t_user u ON n.editor_id=u.id ' 'ORDER BY n.create_time DESC ' 'LIMIT %s,%s' cursor.execute(sql,((page-1)*10,10)) result=cursor.fetchall() return resultexcept Exception as e: print(e)finally: if 'con' in dir():con.close() #查詢新聞總頁數 def search_count_page(self):try: con=pool.get_connection() cursor=con.cursor() sql='SELECT CEIL(COUNT(*)/10) FROM t_news' cursor.execute(sql) count_page=cursor.fetchone()[0] return count_pageexcept Exception as e: print(e)finally: if 'con' in dir():con.close() #刪除新聞 def delete_by_id(self,id):try: con = pool.get_connection() con.start_transaction() cursor=con.cursor() sql='DELETE FROM t_news WHERE id=%s' cursor.execute(sql,[id]) con.commit()except Exception as e: if 'con' in dir():con.rollback() print(e)finally: if 'con' in dir():con.close()

from db.news_dao import NewsDaoclass NewsService: __news_dao=NewsDao() # 查詢待審批新聞列表 def search_unreview_list(self,page):result=self.__news_dao.search_unreview_list(page)return result # 查詢待審批新聞的總頁數 def search_unreview_count_page(self):count_page=self.__news_dao.search_unreview_count_page()return count_page # 審批新聞 def update_unreview_news(self, id):self.__news_dao.update_unreview_news(id) #查詢新聞列表 def search_list(self, page):result=self.__news_dao.search_list(page)return result # 查詢新聞總頁數 def search_count_page(self):count_page=self.__news_dao.search_count_page()return count_page # 刪除新聞 def delete_by_id(self, id):self.__news_dao.delete_by_id(id)

from colorama import Fore,Style,initinit()from getpass import getpassfrom service.user_service import UserServicefrom service.news_service import NewsServicefrom service.role_service import RoleServiceimport osimport sysimport time__user_service=UserService()__news_service=NewsService()__role_service=RoleService()while True: os.system('cls') print(Fore.LIGHTBLUE_EX,'nt==================') print(Fore.LIGHTBLUE_EX,'nt歡迎使用新聞管理系統') print(Fore.LIGHTBLUE_EX, 'nt==================') print(Fore.LIGHTGREEN_EX,'nt1.登陸系統') print(Fore.LIGHTGREEN_EX,'nt2.退出系統') print(Style.RESET_ALL) opt=input('nt輸入操作編號:') if opt=='1':username=input('nt用戶名:')password=getpass('nt密碼:')result=__user_service.login(username,password)#登陸成功if result==True: #查詢角色 role=__user_service.search_user_role(username) while True:os.system('cls')if role=='新聞編輯': print(’test’)elif role=='管理員': print(Fore.LIGHTGREEN_EX,'nt1.新聞管理') print(Fore.LIGHTGREEN_EX, 'nt2.用戶管理') print(Fore.LIGHTRED_EX, 'ntback.退出登陸') print(Fore.LIGHTRED_EX, 'ntexit.退出系統') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt=='1':while True: os.system('cls') print(Fore.LIGHTGREEN_EX, 'nt1.審批新聞') print(Fore.LIGHTGREEN_EX, 'nt2.刪除新聞') print(Fore.LIGHTRED_EX, 'ntback.返回上一層') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt=='1':page=1while True: os.system('cls') count_page=__news_service.search_unreview_count_page() result=__news_service.search_unreview_list(page) for index in range(len(result)):one=result[index]print(Fore.LIGHTBLUE_EX, 'nt%dt%st%st%s'%(index+1,one[1],one[2],one[3])) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTBLUE_EX,'nt%d/%d'%(page,count_page)) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTRED_EX, 'ntback.返回上一層') print(Fore.LIGHTRED_EX, 'ntprev.上一頁') print(Fore.LIGHTRED_EX, 'ntnext.下一頁') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt=='back':break elif opt=='prev' and page>1:page-=1 elif opt=='next' and page<count_page:page+=1 elif int(opt)>=1 and int(opt)<=10:news_id=result[int(opt)-1][0]__news_service.update_unreview_news(news_id) elif opt=='2':page=1while True: os.system('cls') count_page=__news_service.search_count_page() result=__news_service.search_list(page) for index in range(len(result)):one=result[index]print(Fore.LIGHTBLUE_EX, 'nt%dt%st%st%s'%(index+1,one[1],one[2],one[3])) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTBLUE_EX,'nt%d/%d'%(page,count_page)) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTRED_EX, 'ntback.返回上一層') print(Fore.LIGHTRED_EX, 'ntprev.上一頁') print(Fore.LIGHTRED_EX, 'ntnext.下一頁') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt=='back':break elif opt=='prev' and page>1:page-=1 elif opt=='next' and page<count_page:page+=1 elif int(opt)>=1 and int(opt)<=10:news_id=result[int(opt)-1][0]__news_service.delete_by_id(news_id) elif opt=='back':break elif opt=='2':while True: os.system('cls') print(Fore.LIGHTGREEN_EX, 'nt1.添加用戶') print(Fore.LIGHTGREEN_EX, 'nt2.修改用戶') print(Fore.LIGHTGREEN_EX, 'nt3.刪除用戶') print(Fore.LIGHTRED_EX, 'ntback.返回上一層') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt=='back':break elif opt=='1':os.system('cls')username=input('nt用戶名:')password = getpass('nt密碼:')repassword=getpass('nt重復密碼:')if password!=repassword: print('nt兩次密碼不一致(3秒自動返回)') time.sleep(3) continueemail=input('nt郵箱:')result=__role_service.search_list()for index in range(len(result)): one=result[index] print(Fore.LIGHTBLUE_EX,'nt%d.%s'%(index+1,one[1]))print(Style.RESET_ALL)opt=input('nt角色編號:')role_id=result[int(opt)-1][0]__user_service.insert(username,password,email,role_id)print('nt保存成功(3秒自動返回)')time.sleep(3) elif opt=='2':page = 1while True: os.system('cls') count_page = __user_service.search_count_page() result = __user_service.search_list(page) for index in range(len(result)):one = result[index]print(Fore.LIGHTBLUE_EX, 'nt%dt%st%s' % (index + 1, one[1], one[2])) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTBLUE_EX, 'nt%d/%d' % (page, count_page)) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTRED_EX, 'ntback.返回上一層') print(Fore.LIGHTRED_EX, 'ntprev.上一頁') print(Fore.LIGHTRED_EX, 'ntnext.下一頁') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt == 'back':break elif opt == 'prev' and page > 1:page -= 1 elif opt == 'next' and page < count_page:page += 1 elif int(opt) >= 1 and int(opt) <= 10:os.system('cls')user_id=result[int(opt)-1][0]username = input('nt新用戶名:')password = getpass('nt新密碼:')repassword = getpass('nt再次輸入密碼:')if password!=repassword: print(Fore.LIGHTRED_EX,'nt兩次密碼不一致(3秒自動返回)') print(Style.RESET_ALL) time.sleep(3) breakemail = input('nt新郵箱:')result = __role_service.search_list()for index in range(len(result)): one = result[index] print(Fore.LIGHTBLUE_EX, 'nt%d.%s' % (index + 1, one[1]))print(Style.RESET_ALL)opt = input('nt角色編號:')role_id = result[int(opt) - 1][0]opt=input('nt是否保存(Y/N)')if opt=='Y' or opt=='y': __user_service.update(user_id,username,password,email,role_id) print('nt保存成功(3秒自動返回)') time.sleep(3) elif opt=='3':page = 1while True: os.system('cls') count_page = __user_service.search_count_page() result = __user_service.search_list(page) for index in range(len(result)):one = result[index]print(Fore.LIGHTBLUE_EX, 'nt%dt%st%s' % (index + 1, one[1], one[2])) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTBLUE_EX, 'nt%d/%d' % (page, count_page)) print(Fore.LIGHTBLUE_EX, 'nt-------------------') print(Fore.LIGHTRED_EX, 'ntback.返回上一層') print(Fore.LIGHTRED_EX, 'ntprev.上一頁') print(Fore.LIGHTRED_EX, 'ntnext.下一頁') print(Style.RESET_ALL) opt = input('nt輸入操作編號:') if opt == 'back':break elif opt == 'prev' and page > 1:page -= 1 elif opt == 'next' and page < count_page:page += 1 elif int(opt) >= 1 and int(opt) <= 10:os.system('cls')user_id=result[int(opt)-1][0]__user_service.delete_by_id(user_id)print('nt刪除成功(3秒自動返回)')time.sleep(3) if opt==’back’:break; elif opt==’exit’:sys.exit(0)else: print('nt登錄失敗(3秒自動返回)') time.sleep(3) elif opt=='2':sys.exit(0)

以上就是python mysql項目實戰的詳細內容,更多關于python mysql項目實戰的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
久久久精品五月天| 天堂va蜜桃一区二区三区| 国产精品国产一区| 亚洲最新av| sm久久捆绑调教精品一区| 午夜久久黄色| 婷婷综合六月| 久久免费福利| 国产精品调教视频| 91亚洲无吗| 天堂va在线高清一区| 黄色成人在线网址| 精精国产xxxx视频在线野外| 国产精品第一| 国产精品1luya在线播放| 国产精品亚洲一区二区三区在线观看| 国产精品porn| 欧美1区二区| 日本不卡一区二区| 天堂精品久久久久| 亚洲中午字幕| 国产精品丝袜xxxxxxx| 日韩午夜一区| 午夜亚洲福利| 久久uomeier| 水蜜桃久久夜色精品一区的特点| 国产精品videosex极品| 久久免费国产| 青青草国产精品亚洲专区无| 超碰超碰人人人人精品| 视频一区二区不卡| 老色鬼精品视频在线观看播放| 999精品在线| 911亚洲精品| 狠狠色综合网| 国产欧美日韩影院| 亚洲婷婷免费| 精品三级国产| 中文字幕一区二区精品区| 欧美精品黄色| 精品国产鲁一鲁****| 国产精品婷婷| 日韩国产网站| 精品亚洲精品| 日韩精品一区二区三区av| 日韩精品一卡| 97精品视频在线看| 亚洲aⅴ网站| 亚洲激情精品| 欧美日韩一区二区综合 | 欧美一区成人| 麻豆精品网站| 欧美成人午夜| 蜜桃成人精品| 日韩高清不卡| 国模大尺度视频一区二区| 97久久亚洲| 欧美亚洲自偷自偷| 日韩午夜视频在线| 日本v片在线高清不卡在线观看| 午夜久久黄色| 中文在线一区| 亚洲一二av| 麻豆91精品| 亚洲欧洲美洲国产香蕉| 噜噜噜躁狠狠躁狠狠精品视频| 久久国产福利| 亚洲91在线| 国产欧美日韩精品一区二区三区| 国产欧美一区二区色老头| 国产一卡不卡| 国产精品成人a在线观看| 91日韩免费| 国产在线成人| 日韩欧美四区| 日本精品黄色| 久久在线电影| jiujiure精品视频播放| 快播电影网址老女人久久| 欧美 日韩 国产一区二区在线视频 | av一区二区高清| 午夜一级久久| 国产亚洲久久| 欧美sm一区| 综合激情网...| 亚洲精品美女91| 涩涩av在线| 综合亚洲视频| 日本视频在线一区| 精品九九久久| 亚州av日韩av| 国产精品99一区二区三| 久久午夜精品一区二区| 国产精品久久久久久久久久白浆| 国产成人精品一区二区三区视频 | 国产一区二区三区不卡av| 不卡视频在线| 日产欧产美韩系列久久99| 黑人精品一区| 久久精品超碰| 亚洲精品午夜av福利久久蜜桃| 国产精品hd| 在线观看一区| 日韩不卡免费高清视频| 国产一精品一av一免费爽爽| 久久亚洲国产| 精品女同一区二区三区在线观看| 亚洲精品自拍| 欧美高清一区| 高清一区二区三区| 欧美日韩一区二区三区四区在线观看| 国产真实久久| 久久精品天堂| 97久久超碰| 亚洲欧洲专区| 免费成人av在线播放| 亚洲精品一区二区妖精| 日韩一区二区三区免费播放| 久久精品一区二区三区中文字幕| 伊人国产精品| 亚洲午夜一级| 日本韩国欧美超级黄在线观看| 麻豆久久久久久| 国产乱码精品一区二区三区亚洲人 | 国产色99精品9i| 日韩中文字幕av电影| 91久久国产| 亚洲作爱视频| 中文字幕亚洲精品乱码| 视频一区国产视频| 中文字幕日韩亚洲| 91麻豆精品| 久久99久久久精品欧美| 精品一区二区三区免费看| 手机在线电影一区| 精品免费av| 久久高清精品| 黄色亚洲免费| 亚洲18在线| 久久av影院| 成人久久一区| 99国产精品私拍| 首页亚洲欧美制服丝腿| 香蕉久久一区| 久久久亚洲欧洲日产| 精品国产18久久久久久二百| 中文字幕在线官网| 黄色成人91| 日本aⅴ亚洲精品中文乱码| 国产精品一区二区三区av麻| 日韩高清在线一区| 97精品中文字幕| 久久久蜜桃一区二区人| 日本在线不卡视频| av资源新版天堂在线| 国产一级成人av| 亚洲黑丝一区二区| 国产人成精品一区二区三| 香蕉精品久久| 日韩激情网站| 久久九九电影| 日韩动漫一区| 日韩天堂av| 精品一区二区三区中文字幕| av不卡在线| 国产伦精品一区二区三区视频| sm捆绑调教国产免费网站在线观看| 免费久久精品视频| 色偷偷偷在线视频播放| 欧美一区自拍| 99国产精品久久久久久久成人热 | 精品免费在线| 四虎精品一区二区免费| 日韩啪啪电影网| 国产激情一区| 亚洲久草在线| 日韩欧美一区二区三区在线观看 | 青青青免费在线视频| 97精品国产99久久久久久免费| 亚洲精品午夜av福利久久蜜桃| 黄毛片在线观看| 国产一区2区在线观看| 国产黄色精品| 国产欧美欧美| 91精品丝袜国产高跟在线| 久久不射网站| 欧美日韩在线播放视频| 久久精品国产亚洲aⅴ| 国产美女撒尿一区二区| 午夜在线播放视频欧美| av在线日韩| 亚洲91久久| 三上亚洲一区二区| 精品国产亚洲日本| 国产精品毛片久久| 日韩理论片av| 亚洲福利精品| 99日韩精品| 日本成人手机在线| 国产日韩一区二区三区在线播放|