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

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

?? testqueryimpl.java

?? 具備多表組合查詢組件功能。通過將表字段與表間關系映射到對象關系及屬性
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
package cn.edu.buaa.ieguam.logmanage.query;

import java.text.DateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import cn.edu.buaa.ieguam.logmanage.LogQueryImpl;
import cn.edu.buaa.ieguam.logmanage.MBean;
import cn.edu.buaa.ieguam.logmanage.MBeanPage;
import cn.edu.buaa.ieguam.logmanage.OracleConnection;
import cn.edu.buaa.ieguam.logmanage.ResultFormat;
import cn.edu.buaa.ieguam.logmanage.SqlDefForOracle;
import cn.edu.buaa.ieguam.logmanage.pojos.AppLog;
import cn.edu.buaa.ieguam.logmanage.pojos.AuditInfo;
import cn.edu.buaa.ieguam.logmanage.pojos.AuditType;
import cn.edu.buaa.ieguam.logmanage.pojos.EventId;
import cn.edu.buaa.ieguam.logmanage.pojos.EventType;
import cn.edu.buaa.ieguam.logmanage.pojos.LinuxLog;
import cn.edu.buaa.ieguam.logmanage.pojos.MySqlLog;
import cn.edu.buaa.ieguam.logmanage.pojos.Operation;
import cn.edu.buaa.ieguam.logmanage.pojos.OracleLog;
import cn.edu.buaa.ieguam.logmanage.pojos.SqlServerLog;
import cn.edu.buaa.ieguam.logmanage.pojos.TomcatLog;
import cn.edu.buaa.ieguam.logmanage.pojos.WinLog;

public class TestQueryImpl 
{
	
	private LogQueryImpl logQueryImpl = new LogQueryImpl(new SqlDefForOracle());
	
	private AuditInfo auditInfo = new AuditInfo();
	private AuditType auditType = new AuditType();
	private EventId eventId = new EventId();
	private EventType eventType = new EventType();
	private WinLog winLog = new WinLog();
	private LinuxLog linuxLog = new LinuxLog();
	private TomcatLog tomcatLog = new TomcatLog();
	private MySqlLog mySqlLog = new MySqlLog();
	private OracleLog oracleLog = new OracleLog();
	private SqlServerLog sqlServerLog = new SqlServerLog();
	private AppLog appLog = new AppLog();
	private Operation operation = new Operation();
	
	public void initTree()
	{
		//設置MBean
		this.logQueryImpl.assignMBean("auditInfo", "AUDITINFO", this.auditInfo);
		this.logQueryImpl.assignMBean("auditType", "AUDITTYPE", this.auditType);
		this.logQueryImpl.assignMBean("eventId", "EVENTID", this.eventId);
		this.logQueryImpl.assignMBean("eventType", "EVENTTYPE", this.eventType);
		this.logQueryImpl.assignMBean("winLog", "WINLOG", this.winLog);
		this.logQueryImpl.assignMBean("linuxLog", "LINUXLOG", this.linuxLog);
		this.logQueryImpl.assignMBean("tomcatLog", "TOMCATLOG", this.tomcatLog);
		this.logQueryImpl.assignMBean("mySqlLog", "MYSQLLOG", this.mySqlLog);
		this.logQueryImpl.assignMBean("oracleLog", "ORACLELOG", this.oracleLog);
		this.logQueryImpl.assignMBean("sqlServerLog", "SQLSERVERLOG", this.sqlServerLog);
		this.logQueryImpl.assignMBean("appLog", "APPLOG", this.appLog);
		this.logQueryImpl.assignMBean("operation", "OPERATION", this.operation);
		
		//設置主鍵屬性
		this.logQueryImpl.createPkm("auditInfo", "id");
		this.logQueryImpl.createPkm("auditType", "id");
		this.logQueryImpl.createPkm("eventId", "id");
		this.logQueryImpl.createPkm("eventType", "id");
		this.logQueryImpl.createPkm("winLog", "id");
		this.logQueryImpl.createPkm("linuxLog", "id");
		this.logQueryImpl.createPkm("tomcatLog", "id");
		this.logQueryImpl.createPkm("mySqlLog", "id");
		this.logQueryImpl.createPkm("oracleLog", "id");
		this.logQueryImpl.createPkm("sqlServerLog", "id");
		this.logQueryImpl.createPkm("appLog", "id");
		this.logQueryImpl.createPkm("operation", "id");
		
        //設置對象-關系映射
		this.logQueryImpl.createOrmMap("auditInfo", "id", "AUDITINFO.ID");
		this.logQueryImpl.createOrmMap("auditInfo", "auditDate", "AUDITINFO.AUDITDATE");
		this.logQueryImpl.createOrmMap("auditInfo", "eventId", "AUDITINFO.EVENTID");
		this.logQueryImpl.createOrmMap("auditInfo", "eventType", "AUDITINFO.EVENTTYPE");
		this.logQueryImpl.createOrmMap("auditInfo", "ipAddr", "AUDITINFO.IPADDR");
		this.logQueryImpl.createOrmMap("auditInfo", "hostName", "AUDITINFO.HOSTNAME");
		this.logQueryImpl.createOrmMap("auditInfo", "auditType", "AUDITINFO.AUDITTYPE");
		this.logQueryImpl.createOrmMap("auditInfo", "markTime", "AUDITINFO.MARKTIME");
		
		this.logQueryImpl.createOrmMap("auditType", "id", "AUDITTYPE.ID");
		this.logQueryImpl.createOrmMap("auditType", "tableIndex", "AUDITTYPE.TABLEINDEX");
		this.logQueryImpl.createOrmMap("auditType", "typeName", "AUDITTYPE.TYPENAME");
		this.logQueryImpl.createOrmMap("auditType", "description", "AUDITTYPE.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("eventId", "id", "EVENTID.ID");
		this.logQueryImpl.createOrmMap("eventId", "eventName", "EVENTID.EVENTNAME");
		this.logQueryImpl.createOrmMap("eventId", "eventShort", "EVENTID.EVENTSHORT");
		this.logQueryImpl.createOrmMap("eventId", "description", "EVENTID.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("eventType", "id", "EVENTTYPE.ID");
		this.logQueryImpl.createOrmMap("eventType", "eTypeName", "EVENTTYPE.ETYPENAME");
		this.logQueryImpl.createOrmMap("eventType", "description", "EVENTTYPE.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("winLog", "id", "WINLOG.ID");
		this.logQueryImpl.createOrmMap("winLog", "auditId", "WINLOG.AUDITID");
		this.logQueryImpl.createOrmMap("winLog", "oneSource", "WINLOG.ONESOURCE");
		this.logQueryImpl.createOrmMap("winLog", "secondSource", "WINLOG.SECONDSOURCE");
		this.logQueryImpl.createOrmMap("winLog", "category", "WINLOG.CATEGORY");
		this.logQueryImpl.createOrmMap("winLog", "usr", "WINLOG.USR");
		this.logQueryImpl.createOrmMap("winLog", "description", "WINLOG.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("linuxLog", "id", "LINUXLOG.ID");
		this.logQueryImpl.createOrmMap("linuxLog", "auditId", "LINUXLOG.AUDITID");
		this.logQueryImpl.createOrmMap("linuxLog", "description", "LINUXLOG.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("tomcatLog", "id", "TOMCATLOG.ID");
		this.logQueryImpl.createOrmMap("tomcatLog", "auditId", "TOMCATLOG.AUDITID");
		this.logQueryImpl.createOrmMap("tomcatLog", "remoteIp", "TOMCATLOG.REMOTEIP");
		this.logQueryImpl.createOrmMap("tomcatLog", "locIp", "TOMCATLOG.LOCIP");
		this.logQueryImpl.createOrmMap("tomcatLog", "byteSent", "TOMCATLOG.BYTESENT");
		this.logQueryImpl.createOrmMap("tomcatLog", "ReHostName", "TOMCATLOG.REHOSTNAME");
		this.logQueryImpl.createOrmMap("tomcatLog", "reqMethod", "TOMCATLOG.REQMETHOD");
		this.logQueryImpl.createOrmMap("tomcatLog", "locPort", "TOMCATLOG.LOCPORT");
		this.logQueryImpl.createOrmMap("tomcatLog", "queryStr", "TOMCATLOG.QUERYSTR");
		this.logQueryImpl.createOrmMap("tomcatLog", "firstLineReq", "TOMCATLOG.FIRSTLINEREQ");
		this.logQueryImpl.createOrmMap("tomcatLog", "httpStatus", "TOMCATLOG.HTTPSTATUS");
		this.logQueryImpl.createOrmMap("tomcatLog", "usrSessId", "TOMCATLOG.USRSESSID");
		this.logQueryImpl.createOrmMap("tomcatLog", "autherReUsr", "TOMCATLOG.AUTHERREUSR");
		this.logQueryImpl.createOrmMap("tomcatLog", "reqUrl", "TOMCATLOG.REQURL");
		this.logQueryImpl.createOrmMap("tomcatLog", "locSerName", "TOMCATLOG.LOCSERNAME");
		this.logQueryImpl.createOrmMap("tomcatLog", "proTime", "TOMCATLOG.PROTIME");
		this.logQueryImpl.createOrmMap("tomcatLog", "reQuProtocol", "TOMCATLOG.REQUPROTOCOL");
		this.logQueryImpl.createOrmMap("tomcatLog", "reUsrName", "TOMCATLOG.REUSRNAME");
		
		this.logQueryImpl.createOrmMap("sqlServerLog", "id", "SQLSERVERLOG.ID");
		this.logQueryImpl.createOrmMap("sqlServerLog", "auditId", "SQLSERVERLOG.AUDITID");
		this.logQueryImpl.createOrmMap("sqlServerLog", "process", "SQLSERVERLOG.PROCESS");
		this.logQueryImpl.createOrmMap("sqlServerLog", "description", "SQLSERVERLOG.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("mySqlLog", "id", "MYSQLLOG.ID");
		this.logQueryImpl.createOrmMap("mySqlLog", "auditId", "MYSQLLOG.AUDITID");
		this.logQueryImpl.createOrmMap("mySqlLog", "process", "MYSQLLOG.PROCESS");
		this.logQueryImpl.createOrmMap("mySqlLog", "description", "MYSQLLOG.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("oracleLog", "id", "ORACLELOG.ID");
		this.logQueryImpl.createOrmMap("oracleLog", "auditId", "ORACLELOG.AUDITID");
		this.logQueryImpl.createOrmMap("oracleLog", "process", "ORACLELOG.PROCESS");
		this.logQueryImpl.createOrmMap("oracleLog", "description", "ORACLELOG.DESCRIPTION");
		
		this.logQueryImpl.createOrmMap("appLog", "id", "APPLOG.ID");
		this.logQueryImpl.createOrmMap("appLog", "auditId", "APPLOG.AUDITID");
		this.logQueryImpl.createOrmMap("appLog", "sql", "APPLOG.SQL");
		this.logQueryImpl.createOrmMap("appLog", "tableName", "APPLOG.TABLENAME");
		this.logQueryImpl.createOrmMap("appLog", "opType", "APPLOG.OPTYPE");
		this.logQueryImpl.createOrmMap("appLog", "operatorId", "APPLOG.OPERATORID");
		this.logQueryImpl.createOrmMap("appLog", "beOperatedId", "APPLOG.BEOPERATEDID");
		
		this.logQueryImpl.createOrmMap("operation", "id", "OPERATION.ID");
		this.logQueryImpl.createOrmMap("operation", "appId", "OPERATION.APPID");
		this.logQueryImpl.createOrmMap("operation", "columnName", "OPERATION.COLUMNNAME");
		this.logQueryImpl.createOrmMap("operation", "newValue", "OPERATION.NEWVALUE");
		this.logQueryImpl.createOrmMap("operation", "oldValue", "OPERATION.OLDVALUE");
		
		
        //設置外鍵映射
		this.logQueryImpl.createFkmMap("auditInfo", "eventType", "eventType", "id");
		//this.logQueryImpl.createFkmMap("auditInfo", "eventId", "eventId", "id");
		this.logQueryImpl.createFkmMap("auditInfo", "auditType", "auditType", "id");
		
		this.logQueryImpl.createFkmMap("winLog", "auditId", "auditInfo", "id");
		this.logQueryImpl.createFkmMap("linuxLog", "auditId", "auditInfo", "id");
		this.logQueryImpl.createFkmMap("tomcatLog", "auditId", "auditInfo", "id");
		this.logQueryImpl.createFkmMap("sqlServerLog", "auditId", "auditInfo", "id");
		this.logQueryImpl.createFkmMap("mySqlLog", "auditId", "auditInfo", "id");
		this.logQueryImpl.createFkmMap("oracleLog", "auditId", "auditInfo", "id");
		this.logQueryImpl.createFkmMap("appLog", "auditId", "auditInfo", "id");
		
		this.logQueryImpl.createFkmMap("operation", "appId", "appLog", "id");
		
		//設置顯示字段標題
	
		this.logQueryImpl.addColTitle("auditInfo", "auditDate", "日期/時間");
		this.logQueryImpl.addColTitle("auditInfo", "ipAddr", "IP地址");
		this.logQueryImpl.addColTitle("auditInfo", "hostName", "主機名");
		
		this.logQueryImpl.addColTitle("eventId", "eventName", "事件名稱");
		this.logQueryImpl.addColTitle("eventId", "eventShort", "簡要事件描述");
		this.logQueryImpl.addColTitle("eventId", "description", "詳細事件描述");
		
		this.logQueryImpl.addColTitle("eventType", "eTypeName", "事件類型");
		
		this.logQueryImpl.addColTitle("auditType", "typeName", "子表名稱");
		
		this.logQueryImpl.addColTitle("winLog", "oneSource", "一級來源");
		this.logQueryImpl.addColTitle("winLog", "secondSource", "二級來源");
		this.logQueryImpl.addColTitle("winLog", "category", "分類");
		this.logQueryImpl.addColTitle("winLog", "usr", "用戶");
		this.logQueryImpl.addColTitle("winLog", "description", "描述");
		
		this.logQueryImpl.addColTitle("sqlServerLog", "process", "進程名");
		this.logQueryImpl.addColTitle("sqlServerLog", "description", "描述");
		
		
		this.logQueryImpl.addColTitle("tomcatLog", "id", "TOMCATLOG.ID");
		this.logQueryImpl.addColTitle("tomcatLog", "auditId", "TOMCATLOG.AUDITID");
		this.logQueryImpl.addColTitle("tomcatLog", "remoteIp", "遠程IP");
		this.logQueryImpl.addColTitle("tomcatLog", "locIp", "本地IP");
		this.logQueryImpl.addColTitle("tomcatLog", "byteSent", "發送字節數");
		this.logQueryImpl.addColTitle("tomcatLog", "ReHostName", "遠程主機名");
		this.logQueryImpl.addColTitle("tomcatLog", "reqMethod", "請求方法");
		this.logQueryImpl.addColTitle("tomcatLog", "locPort", "本地端口");
		this.logQueryImpl.addColTitle("tomcatLog", "queryStr", "請求字符串");
		this.logQueryImpl.addColTitle("tomcatLog", "firstLineReq", "首行請求");
		this.logQueryImpl.addColTitle("tomcatLog", "httpStatus", "HTTP狀態");
		this.logQueryImpl.addColTitle("tomcatLog", "usrSessId", "用戶會話ID");
		this.logQueryImpl.addColTitle("tomcatLog", "autherReUsr", "驗證遠程用戶名");
		this.logQueryImpl.addColTitle("tomcatLog", "reqUrl", "請求URL");
		this.logQueryImpl.addColTitle("tomcatLog", "locSerName", "本地服務器名");
		this.logQueryImpl.addColTitle("tomcatLog", "proTime", "響應時間");
		this.logQueryImpl.addColTitle("tomcatLog", "reQuProtocol", "客戶請求協議");
		this.logQueryImpl.addColTitle("tomcatLog", "reUsrName", "遠程邏輯用戶名");
		
		
        //定義樹中節點的父子關系
		this.logQueryImpl.setMBeanRelation("auditInfo", "left", "auditType");
		this.logQueryImpl.setMBeanRelation("auditInfo", "left", "eventType");
		//this.logQueryImpl.setMBeanRelation("auditInfo", "left", "eventId");
		
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "winLog");
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "linuxLog");
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "tomcatLog");
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "sqlServerLog");
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "mySqlLog");
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "oracleLog");
		this.logQueryImpl.setMBeanRelation("auditInfo", "right", "appLog");
			
		this.logQueryImpl.setMBeanRelation("appLog", "right", "operation");
		
		//建立節點樹
		this.logQueryImpl.initTree("auditInfo");
		
       
				
	}
	
	public void oneQuery()
	{
        //設置頁面中需要查詢(Select)的屬性字段
/*		
		this.logQueryImpl.assignSelectCol("eventId", "id");
		this.logQueryImpl.assignSelectCol("eventId", "eventName");
		this.logQueryImpl.assignSelectCol("eventId", "eventShort");
		this.logQueryImpl.assignSelectCol("eventId", "description");
*/		
		this.logQueryImpl.assignSelectCol("eventType", "id");
		this.logQueryImpl.assignSelectCol("eventType", "eTypeName");
		this.logQueryImpl.assignSelectCol("eventType", "description");
		
		this.logQueryImpl.assignSelectCol("auditType", "id");
		this.logQueryImpl.assignSelectCol("auditType", "tableIndex");
		this.logQueryImpl.assignSelectCol("auditType", "typeName");
		this.logQueryImpl.assignSelectCol("auditType", "description");
		
		this.logQueryImpl.assignSelectCol("auditInfo", "id");
		this.logQueryImpl.assignSelectCol("auditInfo", "auditDate");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久亚洲私人国产精品va媚药| 成人一区二区三区视频| 久久亚洲一区二区三区明星换脸 | 久久久亚洲欧洲日产国码αv| 国产精品乱码一区二三区小蝌蚪| 91久久人澡人人添人人爽欧美 | 91在线一区二区三区| 美国三级日本三级久久99| 亚洲欧美日韩国产一区二区三区| 精品免费视频一区二区| 91九色最新地址| 成人涩涩免费视频| 国内成人精品2018免费看| 视频一区免费在线观看| 亚洲国产精品久久久久秋霞影院| 欧美国产日韩亚洲一区| 久久综合九色综合欧美亚洲| 91精品国产91久久久久久一区二区| 成人福利在线看| 成人一区二区三区视频在线观看| 国产精品66部| 国产精品一区二区三区乱码| 久久99最新地址| 国产一区二区三区久久久 | 亚洲乱码国产乱码精品精的特点| 精品久久久久久亚洲综合网 | 久久久久久久久久久久久夜| 欧美日韩国产片| 在线综合亚洲欧美在线视频| 这里只有精品免费| 日韩欧美视频在线| 日韩美女在线视频| 精品福利二区三区| 精品久久人人做人人爰| 久久综合久久综合久久综合| 日本一区二区三区四区| 国产精品免费aⅴ片在线观看| 国产精品免费免费| 亚洲线精品一区二区三区八戒| 亚洲第一会所有码转帖| 天天综合色天天综合色h| 蜜桃精品视频在线| 国产超碰在线一区| 91视频xxxx| 欧美一三区三区四区免费在线看| 日韩三级在线免费观看| 久久精品视频一区二区| 中文字幕不卡的av| 亚洲综合一区二区| 蜜桃传媒麻豆第一区在线观看| 国产一区在线不卡| 成人动漫一区二区| 欧美视频完全免费看| 欧美成人aa大片| 国产精品美日韩| 日韩av一级片| 岛国精品在线观看| 欧美日韩一区二区欧美激情| 91黄色免费版| 久久久久国产一区二区三区四区| 亚洲欧洲日韩在线| 青草国产精品久久久久久| a级高清视频欧美日韩| 4438x亚洲最大成人网| 久久精品一二三| 午夜不卡av在线| 99久久精品国产导航| 欧美精品国产精品| 欧美韩日一区二区三区| 五月天精品一区二区三区| 成人永久免费视频| 91精品国产日韩91久久久久久| 日韩一级成人av| 亚洲免费av高清| 国产成人精品网址| 8x8x8国产精品| 亚洲综合一区二区三区| www.亚洲色图| 久久先锋资源网| 一区二区三区四区精品在线视频 | 久久综合99re88久久爱| 亚洲资源在线观看| 97精品电影院| 中文字幕一区二区三区四区不卡| 久久精品国产久精国产爱| 欧美日韩精品一区视频| 久久久亚洲欧洲日产国码αv| 日日嗨av一区二区三区四区| 在线观看视频91| 亚洲免费视频成人| 不卡的av电影| 国产蜜臀97一区二区三区| 精品一区二区三区免费观看 | 欧美sm极限捆绑bd| 日本vs亚洲vs韩国一区三区| 在线观看亚洲成人| 一区二区三区四区蜜桃| 色偷偷88欧美精品久久久| 国产精品免费观看视频| 波多野结衣精品在线| 国产精品私房写真福利视频| 国产一区视频在线看| 久久精品人人爽人人爽| 麻豆精品一区二区三区| 日韩精品一区二| 国产一区 二区| 中国av一区二区三区| 成人18视频日本| 亚洲视频一二三| 成人黄色在线看| 亚洲美女一区二区三区| 欧美少妇性性性| 天天色天天操综合| 精品欧美一区二区久久| 国产69精品一区二区亚洲孕妇| 中文字幕第一页久久| 色一情一乱一乱一91av| 亚洲国产成人av| 在线精品视频一区二区| 日本欧美在线看| 国产日韩欧美麻豆| 99久久er热在这里只有精品15| 亚洲人成7777| 久久久影院官网| 91精品在线免费| 91高清视频在线| 成人av资源站| 激情伊人五月天久久综合| 亚洲欧美精品午睡沙发| 久久久高清一区二区三区| 欧美日韩亚洲国产综合| 波多野结衣亚洲| 国产成人免费av在线| 蜜臀av性久久久久蜜臀aⅴ流畅 | 精品理论电影在线观看 | 91精品国产综合久久精品app | 国产综合成人久久大片91| 亚洲一区二区精品久久av| 1000精品久久久久久久久| 久久精品欧美一区二区三区麻豆| 在线综合+亚洲+欧美中文字幕| 91成人在线免费观看| 成人av网站免费观看| 国产成人综合在线播放| 精品一区二区三区免费播放| 日韩精品亚洲专区| 日欧美一区二区| 日韩成人伦理电影在线观看| 一区二区不卡在线播放| 成人欧美一区二区三区在线播放| 国产三级欧美三级| 久久久精品免费免费| 久久综合久久综合久久综合| 精品国产一区二区三区久久影院| 欧美一区午夜精品| 日韩美女视频一区二区在线观看| 91麻豆精品91久久久久久清纯 | 国产精品色在线| 中文字幕高清不卡| 中文字幕一区三区| 亚洲欧美国产高清| 亚洲午夜私人影院| 丝袜亚洲另类欧美| 日本视频免费一区| 国产在线播放一区三区四| 国产乱国产乱300精品| 国产成人午夜电影网| 成人视屏免费看| 色婷婷久久一区二区三区麻豆| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 久久久精品蜜桃| 亚洲欧美另类综合偷拍| 亚洲一二三四在线观看| 日本中文字幕一区二区视频| 麻豆免费精品视频| zzijzzij亚洲日本少妇熟睡| 色国产精品一区在线观看| 日韩写真欧美这视频| 国产精品无圣光一区二区| 一区二区在线观看视频在线观看| 亚洲成a人v欧美综合天堂下载| 精品亚洲免费视频| 99久久99久久精品免费观看| 欧美日韩三级一区二区| 久久午夜羞羞影院免费观看| 亚洲日穴在线视频| 蜜臀av性久久久久蜜臀aⅴ四虎| 国产成人亚洲综合色影视| 99国产欧美另类久久久精品| 欧美高清性hdvideosex| www国产精品av| 亚洲国产视频一区| 国产成人午夜精品影院观看视频| 色又黄又爽网站www久久| 精品三级在线看| 亚洲自拍偷拍九九九| 国产一级精品在线| 欧美日韩五月天| 欧美极品另类videosde| 午夜欧美大尺度福利影院在线看|