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

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

關于MyBatis10種超好用的寫法(收藏)

瀏覽:30日期:2023-10-23 13:51:10

用來循環容器的標簽forEach,查看例子

foreach元素的屬性主要有item,index,collection,open,separator,close。

item:集合中元素迭代時的別名 index:集合中元素迭代時的索引 open:常用語where語句中,表示以什么開始,比如以’(’開始 separator:表示在每次進行迭代時的分隔符 close 常用語where語句中,表示以什么結束

在使用foreach的時候最關鍵的也是最容易出錯的就是collection屬性,該屬性是必須指定的,但是在不同情況下,該屬性的值是不一樣的,主要有一下3種情況:

如果傳入的是單參數且參數類型是一個List的時候,collection屬性值為list . 如果傳入的是單參數且參數類型是一個array數組的時候,collection的屬性值為array . 如果傳入的參數是多個的時候,我們就需要把它們封裝成一個Map了,當然單參數也可以封裝成map,實際上如果你在傳入參數的時候,在MyBatis里面也是會把它封裝成一個Map的,map的key就是參數名,所以這個時候collection屬性值就是傳入的List或array對象在自己封裝的map里面的key.

針對最后一條,我們來看一下官方說法:

注意 你可以將一個 List 實例或者數組作為參數對象傳給 MyBatis,當你這么做的時候,MyBatis 會自動將它包裝在一個 Map 中并以名稱為鍵。List 實例將會以“list”作為鍵,而數組實例的鍵將是“array”。所以,不管是多參數還是單參數的list,array類型,都可以封裝為map進行傳遞。如果傳遞的是一個List,則mybatis會封裝為一個list為key,list值為object的map,如果是array,則封裝成一個array為key,array的值為object的map,如果自己封裝呢,則colloection里放的是自己封裝的map里的key值

//mapper中我們要為這個方法傳遞的是一個容器,將容器中的元素一個一個的//拼接到xml的方法中就要使用這個forEach這個標簽了public List<Entity> queryById(List<String> userids);

//對應的xml中如下 <select resultMap='BaseReslutMap' > select * FROM entity where id in <foreach collection='userids' item='userid' index='index' open='(' separator=',' close=')'> #{userid} </foreach> </select>

concat模糊查詢

//比如說我們想要進行條件查詢,但是幾個條件不是每次都要使用,那么我們就可以//通過判斷是否拼接到sql中 <select resultMap='BascResultMap' parameterType='entity'> SELECT * from entity <where> <if test='name!=null'> name like concat(’%’,concat(#{name},’%’)) </if> </where> </select>

choose (when, otherwise)標簽

choose標簽是按順序判斷其內部when標簽中的test條件是否成立,如果有一個成立,則 choose 結束。當 choose 中所有 when 的條件都不滿則時,則執行 otherwise 中的sql。類似于Java 的 switch 語句,choose 為 switch,when 為 case,otherwise 則為 default。

例如下面例子,同樣把所有可以限制的條件都寫上,方便使用。choose會從上到下選擇一個when標簽的test為true的sql執行。安全考慮,我們使用where將choose包起來,放置關鍵字多于錯誤。

<!-- choose(判斷參數) - 按順序將實體類 User 第一個不為空的屬性作為:where條件 --> <select resultMap='resultMap_user' parameterType='com.yiibai.pojo.User'> SELECT * FROM User u <where> <choose> <when test='username !=null '> u.username LIKE CONCAT(CONCAT(’%’, #{username, jdbcType=VARCHAR}),’%’) </when > <when test='sex != null and sex != ’’ '> AND u.sex = #{sex, jdbcType=INTEGER} </when > <when test='birthday != null '> AND u.birthday = #{birthday, jdbcType=DATE} </when > <otherwise> </otherwise> </choose> </where> </select>

selectKey 標簽

在insert語句中,在Oracle經常使用序列、在MySQL中使用函數來自動生成插入表的主鍵,而且需要方法能返回這個生成主鍵。使用myBatis的selectKey標簽可以實現這個效果。

下面例子,使用mysql數據庫自定義函數nextval(’student’),用來生成一個key,并把它設置到傳入的實體類中的studentId屬性上。所以在執行完此方法后,便可以通過這個實體類獲取生成的key。

<!-- 插入學生 自動主鍵--> <insert parameterType='liming.student.manager.data.model.StudentEntity' keyProperty='studentId'> <selectKey keyProperty='studentId' resultType='String' order='BEFORE'> select nextval(’student’) </selectKey> INSERT INTO STUDENT_TBL(STUDENT_ID, STUDENT_NAME, STUDENT_SEX, STUDENT_BIRTHDAY, STUDENT_PHOTO, CLASS_ID, PLACE_ID) VALUES (#{studentId}, #{studentName}, #{studentSex}, #{studentBirthday}, #{studentPhoto, javaType=byte[], jdbcType=BLOB, typeHandler=org.apache.ibatis.type.BlobTypeHandler}, #{classId}, #{placeId}) </insert>

調用接口方法,和獲取自動生成key

StudentEntity entity = new StudentEntity(); entity.setStudentName('黎明你好'); entity.setStudentSex(1); entity.setStudentBirthday(DateUtil.parse('1985-05-28')); entity.setClassId('20000001'); entity.setPlaceId('70000001'); this.dynamicSqlMapper.createStudentAutoKey(entity); System.out.println('新增學生ID: ' + entity.getStudentId());

if標簽

if標簽可用在許多類型的sql語句中,我們以查詢為例。首先看一個很普通的查詢:

<!-- 查詢學生list,like姓名 --> <select parameterType='StudentEntity' resultMap='studentResultMap'> SELECT * from STUDENT_TBL ST WHERE ST.STUDENT_NAME LIKE CONCAT(CONCAT(’%’, #{studentName}),’%’) </select>

但是此時如果studentName為null,此語句很可能報錯或查詢結果為空。此時我們使用if動態sql語句先進行判斷,如果值為null或等于空字符串,我們就不進行此條件的判斷,增加靈活性。

參數為實體類StudentEntity。將實體類中所有的屬性均進行判斷,如果不為空則執行判斷條件。

<!-- 2 if(判斷參數) - 將實體類不為空的屬性作為where條件 --> <select resultMap='resultMap_studentEntity' parameterType='liming.student.manager.data.model.StudentEntity'> SELECT ST.STUDENT_ID, ST.STUDENT_NAME, ST.STUDENT_SEX, ST.STUDENT_BIRTHDAY, ST.STUDENT_PHOTO, ST.CLASS_ID, ST.PLACE_ID FROM STUDENT_TBL ST WHERE <if test='studentName !=null '> ST.STUDENT_NAME LIKE CONCAT(CONCAT(’%’, #{studentName, jdbcType=VARCHAR}),’%’) </if> <if test='studentSex != null and studentSex != ’’ '> AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} </if> <if test='studentBirthday != null '> AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} </if> <if test='classId != null and classId!= ’’ '> AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} </if> <if test='classEntity != null and classEntity.classId !=null and classEntity.classId !=’ ’ '> AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} </if> <if test='placeId != null and placeId != ’’ '> AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} </if> <if test='placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != ’’ '> AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} </if> <if test='studentId != null and studentId != ’’ '> AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} </if> </select>

使用時比較靈活, new一個這樣的實體類,我們需要限制那個條件,只需要附上相應的值就會where這個條件,相反不去賦值就可以不在where中判斷。

public void select_test_2_1() { StudentEntity entity = new StudentEntity(); entity.setStudentName(''); entity.setStudentSex(1); entity.setStudentBirthday(DateUtil.parse('1985-05-28')); entity.setClassId('20000001'); //entity.setPlaceId('70000001'); List<StudentEntity> list = this.dynamicSqlMapper.getStudentList_if(entity); for (StudentEntity e : list) { System.out.println(e.toString()); } }

if + where 的條件判斷

當where中的條件使用的if標簽較多時,這樣的組合可能會導致錯誤。我們以在3.1中的查詢語句為例子,當java代碼按如下方法調用時:

@Test public void select_test_2_1() { StudentEntity entity = new StudentEntity(); entity.setStudentName(null); entity.setStudentSex(1); List<StudentEntity> list = this.dynamicSqlMapper.getStudentList_if(entity); for (StudentEntity e : list) { System.out.println(e.toString()); } }

如果上面例子,參數studentName為null,將不會進行STUDENT_NAME列的判斷,則會直接導“WHERE AND”關鍵字多余的錯誤SQL。

這時我們可以使用where動態語句來解決。這個“where”標簽會知道如果它包含的標簽中有返回值的話,它就插入一個‘where’。此外,如果標簽返回的內容是以AND 或OR 開頭的,則它會剔除掉。

上面例子修改為:

<!-- 3 select - where/if(判斷參數) - 將實體類不為空的屬性作為where條件 --> <select resultMap='resultMap_studentEntity' parameterType='liming.student.manager.data.model.StudentEntity'> SELECT ST.STUDENT_ID, ST.STUDENT_NAME, ST.STUDENT_SEX, ST.STUDENT_BIRTHDAY, ST.STUDENT_PHOTO, ST.CLASS_ID, ST.PLACE_ID FROM STUDENT_TBL ST <where> <if test='studentName !=null '> ST.STUDENT_NAME LIKE CONCAT(CONCAT(’%’, #{studentName, jdbcType=VARCHAR}),’%’) </if> <if test='studentSex != null and studentSex != ’’ '> AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} </if> <if test='studentBirthday != null '> AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} </if> <if test='classId != null and classId!= ’’ '> AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} </if> <if test='classEntity != null and classEntity.classId !=null and classEntity.classId !=’ ’ '> AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} </if> <if test='placeId != null and placeId != ’’ '> AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} </if> <if test='placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != ’’ '> AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} </if> <if test='studentId != null and studentId != ’’ '> AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} </if> </where> </select>

if + set實現修改語句

當update語句中沒有使用if標簽時,如果有一個參數為null,都會導致錯誤。

當在update語句中使用if標簽時,如果前面的if沒有執行,則或導致逗號多余錯誤。使用set標簽可以將動態的配置SET 關鍵字,和剔除追加到條件末尾的任何不相關的逗號。使用if+set標簽修改后,如果某項為null則不進行更新,而是保持數據庫原值。

如下示例:

<!-- 4 if/set(判斷參數) - 將實體類不為空的屬性更新 --> <update parameterType='liming.student.manager.data.model.StudentEntity'> UPDATE STUDENT_TBL <set> <if test='studentName != null and studentName != ’’ '> STUDENT_TBL.STUDENT_NAME = #{studentName}, </if> <if test='studentSex != null and studentSex != ’’ '> STUDENT_TBL.STUDENT_SEX = #{studentSex}, </if> <if test='studentBirthday != null '> STUDENT_TBL.STUDENT_BIRTHDAY = #{studentBirthday}, </if> <if test='studentPhoto != null '> STUDENT_TBL.STUDENT_PHOTO = #{studentPhoto, javaType=byte[], jdbcType=BLOB, typeHandler=org.apache.ibatis.type.BlobTypeHandler}, </if> <if test='classId != ’’ '> STUDENT_TBL.CLASS_ID = #{classId} </if> <if test='placeId != ’’ '> STUDENT_TBL.PLACE_ID = #{placeId} </if> </set> WHERE STUDENT_TBL.STUDENT_ID = #{studentId}; </update>

if + trim代替where/set標簽

trim是更靈活的去除多余關鍵字的標簽,他可以實踐where和set的效果。

trim代替where

<!-- 5.1if/trim代替where(判斷參數) -將實體類不為空的屬性作為where條件--> <select resultMap='resultMap_studentEntity'> SELECT ST.STUDENT_ID, ST.STUDENT_NAME, ST.STUDENT_SEX, ST.STUDENT_BIRTHDAY, ST.STUDENT_PHOTO, ST.CLASS_ID, ST.PLACE_ID FROM STUDENT_TBL ST <trim prefix='WHERE' prefixOverrides='AND|OR'> <if test='studentName !=null '> ST.STUDENT_NAME LIKE CONCAT(CONCAT(’%’, #{studentName, jdbcType=VARCHAR}),’%’) </if> <if test='studentSex != null and studentSex != ’’ '> AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER} </if> <if test='studentBirthday != null '> AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE} </if> <if test='classId != null and classId!= ’’ '> AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR} </if> <if test='classEntity != null and classEntity.classId !=null and classEntity.classId !=’ ’ '> AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR} </if> <if test='placeId != null and placeId != ’’ '> AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR} </if> <if test='placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != ’’ '> AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR} </if> <if test='studentId != null and studentId != ’’ '> AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR} </if> </trim> </select>

trim代替set

<!-- 5.2 if/trim代替set(判斷參數) - 將實體類不為空的屬性更新 --> <update parameterType='liming.student.manager.data.model.StudentEntity'> UPDATE STUDENT_TBL <trim prefix='SET' suffixOverrides=','> <if test='studentName != null and studentName != ’’ '> STUDENT_TBL.STUDENT_NAME = #{studentName}, </if> <if test='studentSex != null and studentSex != ’’ '> STUDENT_TBL.STUDENT_SEX = #{studentSex}, </if> <if test='studentBirthday != null '> STUDENT_TBL.STUDENT_BIRTHDAY = #{studentBirthday}, </if> <if test='studentPhoto != null '> STUDENT_TBL.STUDENT_PHOTO = #{studentPhoto, javaType=byte[], jdbcType=BLOB, typeHandler=org.apache.ibatis.type.BlobTypeHandler}, </if> <if test='classId != ’’ '> STUDENT_TBL.CLASS_ID = #{classId}, </if> <if test='placeId != ’’ '> STUDENT_TBL.PLACE_ID = #{placeId} </if> </trim> WHERE STUDENT_TBL.STUDENT_ID = #{studentId} </update>

foreach

對于動態SQL 非常必須的,主是要迭代一個集合,通常是用于IN 條件。List 實例將使用“list”作為鍵,數組實例以“array” 做為鍵。

foreach元素是非常強大的,它允許你指定一個集合,聲明集合項和索引變量,它們可以用在元素體內。它也允許你指定開放和關閉的字符串,在迭代之間放置分隔符。這個元素是很智能的,它不會偶然地附加多余的分隔符。

注意:你可以傳遞一個List實例或者數組作為參數對象傳給MyBatis。當你這么做的時候,MyBatis會自動將它包裝在一個Map中,用名稱在作為鍵。List實例將會以“list”作為鍵,而數組實例將會以“array”作為鍵。這個部分是對關于XML配置文件和XML映射文件的而討論的。下一部分將詳細討論Java API,所以你可以得到你已經創建的最有效的映射。

1.參數為array示例的寫法

接口的方法聲明:

public List<StudentEntity> getStudentListByClassIds_foreach_array(String[] classIds);

動態SQL語句:

<!-- 7.1 foreach(循環array參數) - 作為where中in的條件 --> <select resultMap='resultMap_studentEntity'> SELECT ST.STUDENT_ID, ST.STUDENT_NAME, ST.STUDENT_SEX, ST.STUDENT_BIRTHDAY, ST.STUDENT_PHOTO, ST.CLASS_ID, ST.PLACE_ID FROM STUDENT_TBL ST WHERE ST.CLASS_ID IN <foreach collection='array' item='classIds' open='(' separator=',' close=')'> #{classIds} </foreach> </select>

測試代碼,查詢學生中,在20000001、20000002這兩個班級的學生:

@Test public void test7_foreach() { String[] classIds = { '20000001', '20000002' }; List<StudentEntity> list = this.dynamicSqlMapper.getStudentListByClassIds_foreach_array(classIds); for (StudentEntity e : list) { System.out.println(e.toString()); } }

2.參數為list示例的寫法

接口的方法聲明:

public List<StudentEntity> getStudentListByClassIds_foreach_list(List<String> classIdList);

動態SQL語句:

<!-- 7.2 foreach(循環List<String>參數) - 作為where中in的條件 --> <select resultMap='resultMap_studentEntity'> SELECT ST.STUDENT_ID, ST.STUDENT_NAME, ST.STUDENT_SEX, ST.STUDENT_BIRTHDAY, ST.STUDENT_PHOTO, ST.CLASS_ID, ST.PLACE_ID FROM STUDENT_TBL ST WHERE ST.CLASS_ID IN <foreach collection='list' item='classIdList' open='(' separator=',' close=')'> #{classIdList} </foreach> </select>

測試代碼,查詢學生中,在20000001、20000002這兩個班級的學生:

@Test public void test7_2_foreach() { ArrayList<String> classIdList = new ArrayList<String>(); classIdList.add('20000001'); classIdList.add('20000002'); List<StudentEntity> list = this.dynamicSqlMapper.getStudentListByClassIds_foreach_list(classIdList); for (StudentEntity e : list) { System.out.println(e.toString()); } }

sql片段標簽<sql>:通過該標簽可定義能復用的sql語句片段,在執行sql語句標簽中直接引用即可。這樣既可以提高編碼效率,還能有效簡化代碼,提高可讀性

需要配置的屬性:id='' >>>表示需要改sql語句片段的唯一標識

引用:通過<include refid='' />標簽引用,refid='' 中的值指向需要引用的<sql>中的id=“”屬性

<!--定義sql片段--> <sql id='orderAndItem'> o.order_id,o.cid,o.address,o.create_date,o.orderitem_id,i.orderitem_id,i.product_id,i.count </sql> <select parameterType='java.lang.String' resultMap='BaseResultMap'> select <!--引用sql片段--> <include refid='orderAndItem' /> from ordertable o join orderitem i on o.orderitem_id = i.orderitem_id where o.order_id = #{orderId} </select>

到此這篇關于關于MyBatis10種超好用的寫法(收藏)的文章就介紹到這了,更多相關MyBatis 寫法內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Mybatis 數據庫
相關文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
欧美日韩一区二区三区视频播放| 亚洲综合欧美| 欧美中文日韩| 午夜在线一区| 亚洲va久久| 国产日韩视频在线| 国产精品一区二区三区美女 | 中文在线不卡| 欧美日韩国产观看视频| 日韩一区自拍| 久久久免费人体| 久久久亚洲欧洲日产| 欧美丰满日韩| 亚洲精品91| 亚洲综合福利| 麻豆精品av| 欧美在线观看视频一区| 亚洲女同中文字幕| 亚洲精品在线国产| 国产欧美午夜| 亚洲黄色中文字幕| 亚洲在线电影| 日本视频中文字幕一区二区三区| 欧美日韩一区二区三区四区在线观看 | 日韩视频一区二区三区在线播放免费观看 | 国产精品成人自拍| 黄色在线网站噜噜噜| 久久在线免费| 日韩一区二区三区精品视频第3页| 麻豆精品少妇| 午夜日韩av| 欧美亚洲tv| 久久亚洲道色| 欧美精品黄色| 国产剧情在线观看一区| 亚洲一级少妇| 蜜臀a∨国产成人精品| 美腿丝袜亚洲一区| 欧美日韩免费观看一区=区三区 | 在线亚洲自拍| 国产免费播放一区二区| 色吊丝一区二区| 日本成人手机在线| 福利精品在线| 中文字幕一区二区av| 国产精品原创| 日韩国产91| 欧美jjzz| 精品久久99| 日韩精品社区| 午夜日韩av| 成午夜精品一区二区三区软件| 野花国产精品入口| 麻豆91小视频| 亚洲精品自拍| 黑丝美女一区二区| 国产一区二区精品久| 亚洲三级国产| 91tv亚洲精品香蕉国产一区| 国产亚洲精品美女久久久久久久久久| 欧美一级精品| 成人黄色av| 国产情侣一区在线| 久久香蕉精品| 99精品美女| 国产精选在线| 国产极品久久久久久久久波多结野| 视频一区二区三区中文字幕| 日韩在线观看不卡| 麻豆成人91精品二区三区| 亚久久调教视频| 日韩午夜在线| 日韩和的一区二在线| 欧美日韩a区| 欧美中文日韩| 欧美日韩国产综合网| 日韩免费福利视频| 国产一区二区三区黄网站| 欧美日韩精品一区二区三区视频| 美女国产精品| 狠狠色综合网| 激情综合自拍| 亚洲欧美综合| 色88888久久久久久影院| 高清一区二区| 精品视频在线观看网站| 国产精品www.| 欧美国产不卡| 国产精品亚洲产品| 亚洲a级精品| 日韩三区四区| 日韩精品国产精品| 日本麻豆一区二区三区视频| 蜜桃伊人久久| 亚洲制服一区| 日韩精品一级| 国产精品一区二区美女视频免费看 | 亚洲欧洲日本mm| 欧美不卡视频| 国产精品97| 午夜宅男久久久| 亚洲女同中文字幕| 日韩午夜精品| 视频一区二区中文字幕| 亚洲一级大片| 国产午夜精品一区在线观看| 日韩精品欧美大片| 国产精品极品在线观看| 你懂的亚洲视频| 久久精品日韩欧美| 色一区二区三区| 99精品网站| 久热re这里精品视频在线6| 美女久久网站| 91精品国产经典在线观看| 国产日产高清欧美一区二区三区| 四虎成人精品一区二区免费网站| 日韩精彩视频在线观看| 国产剧情一区| 日本蜜桃在线观看视频| 久久精品高清| 蜜桃伊人久久| 国产剧情在线观看一区| 97人人精品| 亚洲精品中文字幕乱码| 日韩综合一区二区| 精品国产中文字幕第一页| 高清av不卡| 日韩亚洲在线| 久久精品99国产精品| 精品国产三区在线| 久久久一二三| 中文字幕成人| 国产一区2区| 黄色亚洲免费| 久久国产三级| 午夜精品成人av| 日韩在线观看一区二区| 国产精品白丝一区二区三区| 欧洲一级精品| 日韩精品一级| 高潮一区二区| 一区二区亚洲视频| 精品一区二区三区中文字幕视频| 天堂网av成人| 欧美日韩xxxx| 在线看片福利| 中文不卡在线| 91免费精品| 亚洲三级视频| 日韩国产一区二区| 日韩精品午夜视频| 久久麻豆精品| 久久精品99久久久| 婷婷色综合网| 你懂的网址国产 欧美| 亚洲欧美高清| 久久精品国产免费| 中文不卡在线| 另类中文字幕国产精品| 欧美日本三区| 亚洲大片在线| 免费看久久久| 亚洲人成亚洲精品| 成人精品亚洲| 麻豆免费精品视频| 免费人成黄页网站在线一区二区| 色综合狠狠操| 日韩高清在线观看一区二区| 尤物tv在线精品| 老司机精品视频网| 少妇精品久久久一区二区三区| 日韩欧美一区二区三区免费观看| 青青草国产精品亚洲专区无| 久久精品动漫| 欧美1区二区| 波多野结衣一区| 激情久久一区二区| 日韩精品第一| 亚洲综合三区| 久久一区二区三区电影| 精品国产三区在线| 国产精品色在线网站| 一区二区三区四区精品视频| 久久国产亚洲| 国产精品毛片一区二区在线看| 国产探花一区| 综合亚洲视频| 国产亚洲综合精品| 久久免费大视频| 三上悠亚国产精品一区二区三区| 欧美一级二级视频| 一区二区日韩免费看| 欧美日韩黑人| 成人羞羞在线观看网站| 国产成人免费精品| 欧美黑人做爰爽爽爽| 国产日韩欧美中文在线| 亚洲日韩视频| 亚洲免费观看高清完整版在线观|