国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

PROG2004代寫、代做Java編程設計
PROG2004代寫、代做Java編程設計

時間:2024-11-14  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Assessment Brief
PROG2004 OBJECT ORIENTED 
PROGRAMMING
Summary
Title Assessment 1 – Programming tasks - a simple appointment system for a 
health service
Type Programming
Due Date Monday 11 November 2024 11:59 pm AEST (Start of Week 3)
Length NA
Weighting 20%
Academic Integrity
(See below for limits 
of use where GenAI 
is permitted)
You may use GenAI tools to get some ideas or insight about particular
problems in code. However, you MUST NOT generate a complete solution 
code.
Please refer to the Academic Integrity section below to see what 
you can and cannot do with the GenAI tools.
Submission You will need to submit the following to the submission link provided for 
this assignment on the MySCU site:
• The JAVA project with all your source code files.
• The link to your GitHub repository.
• A video explaining your code.
Unit Learning 
Outcomes 
This assessment maps to the following ULOs:
• ULO1: explain, compare, and apply advanced class design 
concepts
• ULO2: apply object-oriented programming principles to solve 
intermediate problems
Rationale
This assessment aims to assess students’ ability to understand and apply object-oriented 
programming concepts and principles to solve intermediate problems. It addresses unit learning 
outcomes 1 and 2 and relates to modules 1 and 2.
Task Description 
In this assignment, your task is to write JAVA codes that manage a simple appointment system for a 
health service. A patient may make an appointment with different types of health professionals. 
Health professional is a common term used to describe health workers (e.g., general practitioners, 
specialists, surgeons, dietitians, nurses, etc). 
To limit the complexity, this assessment focuses on two types of health professionals and the 
booking is only for the current day. Your solution must apply the inheritance concept and utilise a 
suitable collection to handle the bookings. 
In this assessment, you MUST: 
• Use JAVA language to develop the solution. 
• Submit JAVA project with all your source code files to MySCU link. 
• Demonstrate your work progress by regularly uploading your code to your GitHub 
repository over the last two weeks. 
• Record a video to explain your code and demonstrate your understanding. 
If you fail to do any of the above, you will lose marks and be required to attend an interview to 
explain your code. If you cannot explain your code, you will be submitted for academic 
misconduct.
Task Instructions
To get started: 
• Create a new Java project called username-A1. 
• In the src directory, create a new class called AssignmentOne. 
• In the AssignmentOne class, create the main method. 
For this assessment, find a website of any health service near your place (e.g., Southport Method 
Medical Centre - https://southportmetromedicalcentre.com.au ) to explore all the different types of 
health professionals with that patients can make appointments. While you are doing this, have a 
look at the different health professional types as they go from more general to more specific. At the 
top level of the Inheritance hierarchy, you need a generic health professional.
Note that this assessment does not endorse any health services. The reference was only used to 
give students an understanding of the case study.
Part 1 – Base class 
This part is to create a base class that will be extended to create different types of health 
professionals.
In your Java project, create a class named HealthProfessional.
The class must have the following at a minimum: 
• Required instance variables: ID (numbers only) and name. 
• Another instance variable that is relevant to describe the basic information regardless of the 
doctor type. 
• A default constructor. 
• A second constructor that initialises all the instance variables. 
• A method that prints all instance variables. 
Part 2 – Child classes 
This part is to create two child classes representing different types of health professionals. To limit 
the complexity, this assessment focuses on two types: general practitioner and any other type that 
2
Assessment Brief
you prefer. Therefore, in the inheritance hierarchy, under class HealthProfessional, you would need 
to handle general practitioners and the other type of health professional.
In your Java project, create one child class named GeneralPractitioner that extends the base class
and another child class for the other type of health professional that also extends the base class.
The child class must have the following at a minimum: 
• At least another instance variable that is relevant and suitable to differentiate between a 
general practitioner and another health professional type 
• A default constructor 
• A second constructor that initialises all the instance variables (including the instance 
variables in the base class) 
• A method that prints the health professional details, including the health professional type 
(if it is a general practitioner or other health professional type) E.g., "The health professional
details are:" followed by all instance variables formatted for readability (including the 
instance variables in the base class)
• Any other methods or variables that you feel are necessary for the class to be usable in the 
program
Part 3 – Using classes and objects 
This part uses the classes created above to create objects for different types of health professionals. 
You are not required to use a collection to store the general practitioners and the other type of 
health professionals, but you may use it if you want to.
In the main method: 
• Add the following comment - // Part 3 – Using classes and objects 
• Write the code to create three objects of General Practitioners and two objects of the 
other health professional type. 
• Use the methods you created in the base and child classes to print the details of all the 
health professionals you created in the above step (including the information from the base 
class). 
• Add the following code - System.out.println("------------------------------"); 
Part 4 – Class Appointment 
This part is to create a class to accommodate an appointment made by a patient. When a patient 
wants to make an appointment, we need to store basic patient details, preferred time slot, and 
which doctor the patient wants to meet.
In your Java project, create a new class named Appointment. The class must have the following at a 
minimum: 
• Instance variables for patient details: name and mobile phone. You are not required to 
create a Patient class, but you may create it if you want to. 
• Instance variable for the preferred time slot (e.g., 08:00, 10:00, 14:30). 
• The selected doctor (general practitioner or another health professional type). This should 
be an object of the child class. 
• A default constructor. 
• A second constructor that initialises all the instance variables. 
3
Assessment Brief
• A method that prints all instance variables. 
Part 5 – Collection of Appointments 
This part is to create a collection of appointments using ArrayList and demonstrate how the 
appointments work. We may add a new appointment, print existing appointments and cancel an 
appointment.
In the main method, write the code to: 
• Add the following comment - // Part 5 – Collection of appointments 
• Declare an ArrayList that can store instances (objects) of Appointment class. 
• Create a method named createAppointment to create a new booking and add it to the 
ArrayList. Since inheritance is applied, the method should be able to handle if the 
appointment is to meet any different health professional types (think carefully). Also, make 
sure all required information is supplied when creating a new appointment. Otherwise, the 
appointment can not be created. 
• Create a method named printExistingAppointments to display existing appointments in the 
ArrayList. If there are no existing appointments, print a message to indicate this. 
• Create a method named cancelBooking to cancel a booking using a patient’s mobile phone. 
If the mobile phone is not found in the existing appointment, print a message to indicate this 
error. 
• Add the following code - System.out.println("------------------------------"); 
Lastly, demonstrate the collection and methods created above by doing these: 
• Make 2 appointments with general practitioners. 
• Make another 2 appointments with the other type of health professional. 
• Print existing appointments.
• Cancel one of the existing appointments.
• Print again existing appointments to demonstrate the updated collection of appointments.
Your main JAVA method should have the following information: 
// Part 3 – Using classes and objects 
Code demonstrating part 3 
System.out.println("------------------------------"); 
// Part 5 – Collection of appointments 
Code demonstrating part 5 
System.out.println("------------------------------");
NOTE: Make sure that none of the code demonstrating each part of the assignment is commented 
out. Your marker will run your main method and will be expecting to see the output for all parts of 
the assignment. If the output for any part is missing, you WILL lose marks for that part. You can 
comment it out when you are developing; however, when you submit your assignment, the main 
method must contain all the code required for all parts of the assignment.
Use GitHub 
You must create a repository on GitHub to store your project work with all files and documents. You 
must show your work progress in this assignment by regularly committing your project to the 
GitHub repository. In each commit, you need to provide a clear explanation of what changes you 
have made in this commit. Failing to show the correct work progress will fail the assignment.
4
Assessment Brief
Create a video 
In your video, ensure you explain:
• how you implemented inheritance in Parts **3,
• how you demonstrated polymorphism in Part 3, and
• how you worked with ArrayList and Class to handle the appointments. 
Your video does not need to be long or go into much detail. You should be able to do all the above in 
<= 5 minutes; however, the video must demonstrate that you understand the code you are 
submitting and you did not use ChatGPT or a similar GenAI tool to generate it. 
Upload your video to your SCU OneDrive and create a sharable link to it.
Resources
Use the following resources to support you when working on this assessment.
• Study modules 1 and 2 materials and complete all learning activities.
• Take an active role in the weekly tutorial and workshop. 
• Java API documentation https://docs.oracle.com/en/java/javase/22/docs/api/index.html
Referencing Style Resource
NA
Task Submission
You are required to submit the following items: 
• The JAVA project with all your source code files. Zip your project into a file called username A1.zip and upload the file.
• The link to your GitHub repository. Add the link in the comments.
• The link to your short video explaining your code part by part. Add the link in the 
comments.
Resubmit policy: This assessment is not eligible for a re-submit.
Assessment Criteria 
Please refer to the marking rubric for more details. Marking criteria include: 
• Java code compiles 
• Use of correct coding style, including the use of comments 
• Accuracy of coding 
• Use of suitable coding structures 
• Correct submission and naming conventions of assessment items as required 
Academic Integrity
At Southern Cross University, academic integrity means behaving with the values of honesty, 
fairness, trustworthiness, courage, responsibility and respect in relation to academic work.
The Southern Cross University Academic Integrity Framework aims to develop a holistic, systematic 
and consistent approach to addressing academic integrity across the entire University. For more 
information, see: SCU Academic Integrity Framework
5
Assessment Brief
6
Assessment Brief
NOTE: Academic Integrity breaches include unacceptable use of generative artificial intelligence 
(GenAI) tools, the use of GenAI has not been appropriately acknowledged or is beyond the 
acceptable limit as defined in the Assessment, poor referencing, not identifying direct quotations 
correctly, close paraphrasing, plagiarism, recycling, misrepresentation, collusion, cheating, contract 
cheating, fabricating information. 
At SCU the use of GenAI tools is acceptable, unless it is beyond the acceptable limit as defined in the 
Assessment Item by the Unit Assessor.
GenAI May be Used
Generative artificial intelligence (GenAI) tools, such as ChatGPT, may be used for this assessment 
task. If you use GenAI tools, you must use these ethically and acknowledge their use. To find out 
how to reference GenAI in your work, consult the referencing style for your unit via the Library
referencing guides. If you are not sure how to, or how much, you can use GenAI tools in your 
studies, contact your Unit Assessor. If you use GenAI tools without acknowledgment, it may result in 
an academic integrity breach against you, as described in the Student Academic and Non-Academic 
Misconduct Rules, Section 3.
You may use Generative Artificial Intelligence (GenAI) tools, such as ChatGPT or Copilot, for this 
assessment task to get some ideas or insight about particular problems in code. It is similar when 
you try to find a snippet of code for doing a particular task in Stack Overflow. For example, you must 
make your own effort to modify, refine, or improve the code to solve the assessment problems. 
Think of it as a tool – a quick way to access information – or a (free) tutor to answer your questions. 
However, just as if you Googled something, you still need to evaluate the information to determine 
its accuracy and relevance. If you have used a GenAI tool in this assessment, you must document 
how you used it and how it assisted you in completing your assessment tasks. Failing to do that 
will be subject to an academic integrity investigation.
You cannot use AI to generate a complete solution code. You need to put your own effort into 
building the solution code for the assessments to demonstrate the required skills. Refer to 
assessment information in the Assessment Tasks and Submission area for details.
Special Consideration
Please refer to the Special Consideration section of Policy.
https://policies.scu.edu.au/document/view-current.php?id=140
Late Submissions & Penalties
Please refer to the Late Submission & Penalties section of Policy.
https://policies.scu.edu.au/view.current.php?id=00255
Grades & Feedback
Assessments that have been submitted by the due date will receive an SCU grade. Grades and 
feedback will be posted to the ‘Grades and Feedback’ section on the Blackboard unit site. Please 
allow 7 days for marks to be posted.
… continued on next page ...
7
Assessment Brief
8
Assessment Brief
Assessment Rubric
Marking Criteria and % 
allocation
High Distinction
(85–100%)
Distinction
(75–84%)
Credit
(65–74%)
Pass
(50–64%)
Fail
0–49%
Apply object-oriented 
programming 
principles and develop 
advanced class design 
to solve health 
professional scenario 
(Parts **2) 
(ULOs **2) 
25% 
Demonstrates 
exceptional 
understanding and 
application of object oriented principles 
(abstraction, 
encapsulation, 
inheritance, 
polymorphism, class) 
to solve complex 
health professional 
problem. 
Designs classes that are 
highly cohesive and 
effectively organised 
using advanced class 
design. 
Demonstrates a solid 
understanding and 
application of object oriented principles 
with minor errors or 
omissions in solving 
health professional 
problems. 
Designs classes that 
generally adhere to 
principles of cohesion 
and advanced class 
design with occasional 
errors or less effective 
implementation. 
Demonstrates a basic 
understanding of 
object-oriented 
principles but with 
notable gaps or errors 
in applying them to 
health professional 
problems. 
Designs classes that 
show basic cohesion 
but lack sophistication 
in advanced class 
design. 
Demonstrates a 
minimal 
understanding of 
object-oriented 
principles with 
substantial errors or 
misunderstandings in 
applying them to 
health professional 
problems. 
Designs classes that 
are poorly organised 
or inefficient. 
Fails to demonstrate a 
basic understanding of 
object-oriented 
principles, with critical 
errors or complete lack 
of application to health 
professional problems. 
Designs classes that 
are fundamentally 
flawed and do not 
meet basic 
requirements. 
Implement advanced 
class concept to 
manage health 
professional data 
(Part 3) 
(ULOs **2) 
10% 
Implements advanced 
class effectively and 
efficiently without 
errors to manage 
health professional 
data. 
Implements advanced 
class with some errors 
or oversights in 
managing health 
professional data. 
creativity and 
innovation. 
Implements advanced 
class with significant 
errors or oversights in 
managing health 
professional data. 
Implements advanced 
class with 
fundamental errors or 
lacks basic 
understanding of 
managing health 
professional data. 
Fails to implement 
advanced class 
effectively, with 
critical errors in 
managing health 
professional data or no 
implementation. 
9
Assessment Brief
Apply object-oriented 
programming 
principles and develop 
advanced class design 
to solve appointment 
scenario 
(Part 4) 
(ULOs **2) 
20% 
Demonstrates 
exceptional 
understanding and 
application of object oriented principles 
(abstraction, 
encapsulation, 
inheritance, 
polymorphism, class) 
to solve complex 
appointment problem. 
Designs classes that are 
highly cohesive and 
effectively organised 
using advanced class 
design. 
Demonstrates a solid 
understanding and 
application of object oriented principles 
with minor errors or 
omissions in solving 
appointment 
problems. 
Designs classes that 
generally adhere to 
principles of cohesion 
and advanced class 
design with occasional 
errors or less effective 
implementation. 
Demonstrates a basic 
understanding of 
object-oriented 
principles but with 
notable gaps or errors 
in applying them to 
appointment 
problems. 
Designs classes that 
show basic cohesion 
but lack sophistication 
in advanced class 
design. 
Demonstrates a 
minimal 
understanding of 
object-oriented 
principles with 
substantial errors or 
misunderstandings in 
applying them to 
appointment 
problems. 
Designs classes that 
are poorly organised 
or inefficient. 
Fails to demonstrate a 
basic understanding of 
object-oriented 
principles, with critical 
errors or complete lack 
of application to 
appointment 
problems. 
Designs classes that 
are fundamentally 
flawed and do not 
meet basic 
requirements. 
Implement advanced 
class concept to 
manage appointment 
data 
(Part 5) 
(ULOs **2) 
25% 
Implements advanced 
class effectively and 
efficiently without 
errors to manage 
health professional 
data. 
Implements advanced 
class with some errors 
or oversights in 
managing health 
professional data. 
creativity and 
innovation. 
Implements advanced 
class with significant 
errors or oversights in 
managing health 
professional data. 
Implements advanced 
class with 
fundamental errors or 
lacks basic 
understanding of 
managing health 
professional data. 
Fails to implement 
advanced class 
effectively, with 
critical errors in 
managing health 
professional data or no 
implementation. 
Accuracy, efficiency, 
validations and 
compatibility 
(ULOs **2) 
Demonstrates 
exceptional accuracy, 
efficiency, validations 
to serve the objectives 
and requirements. 
Demonstrates a solid 
accuracy, efficiency, 
and validations with 
minor errors or 
omissions in serving 
Demonstrates a basic 
accuracy, efficiency, 
and validations with 
notable gaps of errors 
in serving the 
Demonstrates a basic 
accuracy, efficiency, 
and validations with 
notable gaps of errors 
in serving the 
Fails to demonstrate a 
basic accuracy, 
efficiency, and 
validations to serve the 
objectives and 
requirements. 
10
Assessment Brief
10% JAVA code can be
compiled and run
without any issues.
the objectives and 
requirements. 
JAVA code can be 
compiled and run
without any issues.
objectives and 
requirements. 
JAVA code is compiled 
and can be run with 
some minor issues.
objectives and 
requirements. 
JAVA code is compiled 
and can be run with 
major issues.
JAVA code is not 
compiled and has 
significant errors/fails 
to be run. 
Concept 
understanding 
(Comment, GitHub, 
video) 
(ULOs **2) 
10% 
Demonstrates a 
profound 
understanding of 
object-oriented 
programming 
principles and 
advanced class design 
for the case study 
through code 
comments, work 
progress in GitHub, 
and video. 
Demonstrates a 
thorough 
understanding of 
object-oriented 
programming 
principles and 
advanced class design 
for the case study 
through code 
comments, work 
progress in GitHub, 
and video. 
Demonstrates a basic 
understanding of 
object-oriented 
programming 
principles and 
advanced class design 
for the case study 
through code 
comments, work 
progress in GitHub, 
and video. 
Demonstrates a 
minimal 
understanding of 
object-oriented 
programming 
principles and 
advanced class design 
for the case study 
through code 
comments, work 
progress in GitHub, 
and video. 
Fails to demonstrate a 
basic understanding of 
object-oriented 
programming 
principles and 
advanced class design 
for the case study 
through code 
comments, work 
progress in GitHub, 
and video. 
Description of SCU Grades
High Distinction:
The student’s performance, in addition to satisfying all of the basic learning requirements, demonstrates distinctive insight and ability in researching, analysing and 
applying relevant skills and concepts, and shows exceptional ability to synthesise, integrate and evaluate knowledge. The student’s performance could be described as 
outstanding in relation to the learning requirements specified.
Distinction:
The student’s performance, in addition to satisfying all of the basic learning requirements, demonstrates distinctive insight and ability in researching, analysing and 
applying relevant skills and concepts, and shows a well-developed ability to synthesise, integrate and evaluate knowledge. The student’s performance could be described 
as distinguished in relation to the learning requirements specified.
Credit:
The student’s performance, in addition to satisfying all of the basic learning requirements specified, demonstrates insight and ability in researching, analysing and applying 
relevant skills and concepts. The student’s performance could be described as competent in relation to the learning requirements specified.
Pass: 
The student’s performance satisfies all of the basic learning requirements specified and provides a sound basis for proceeding to higher-level studies in the subject area. 
The student’s performance could be described as satisfactory in relation to the learning requirements specified.
Fail: 
The student’s performance fails to satisfy the learning requirements specified.
11
Assessment Brief

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP2011J、Java程序設計代做
  • 下一篇:代寫CSC3150、Python/c++語言編程代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美激情免费在线| 色阁综合伊人av| 国产日韩欧美在线视频观看| 99久久无色码| 精品国产一区二区三区在线观看 | 国产精品无码专区在线观看| 自拍另类欧美| 精品一区国产| 九色在线视频观看| 亚洲精品久久久久久一区二区| 激情五月宗合网| 久久精品女人的天堂av| 亚洲欧美一区二区原创| 免费精品视频一区二区三区| 久久久久久久久国产| 宅男噜噜99国产精品观看免费| 欧美韩国日本在线| 久久久久久久成人| 亚洲综合最新在线| 精品一区二区中文字幕| 国产高清视频一区三区| 欧美激情视频网址| 激情网站五月天| www.午夜精品| 日韩久久久久久久久久久久久| 97欧美精品一区二区三区| 欧美xxxx做受欧美.88| 欧美日韩亚洲一二三 | 国产福利视频一区| 亚洲av首页在线| www插插插无码免费视频网站| 美女精品视频一区| 日韩成人av电影在线| 国产精品一区二区三区久久久 | 国产成人精品一区二区| 亚洲一区二区三区精品视频| 精品一区2区三区| 日日噜噜噜夜夜爽亚洲精品| 午夜精品久久久久久久男人的天堂| 产国精品偷在线| 亚洲中文字幕无码一区二区三区| 国产一区二区久久久| 不用播放器成人网| 国产日韩一区二区在线| 国产精品久久久久久久久粉嫩av| 欧美 日韩 国产 在线观看| 国产精品视频播放| 免费国产a级片| 欧美成人免费va影院高清| 精品网站在线看| 精品国产_亚洲人成在线 | 欧日韩不卡在线视频| 精品国产一区二区三区久久久狼| 国产综合av一区二区三区| 美女精品久久久| 国产成人短视频| 少妇大叫太大太粗太爽了a片小说| 精品欧美国产| 欧美精品成人在线| av久久久久久| 欧美精品卡一卡二| 欧美成在线观看| 久久久国内精品| 欧美精品成人网| 操91在线视频| 久久亚洲一区二区| 少妇精品久久久久久久久久| 国产成人无码a区在线观看视频| 国产中文字幕91| 中文字幕中文字幕在线中一区高清 | 亚洲精品国产精品国自产| 久久久女女女女999久久| 欧美综合激情| 久久成人这里只有精品| 91久久久久久久久久久久久| 人人妻人人添人人爽欧美一区| 国产成人精品亚洲精品| 黄色一区三区| 欧美激情亚洲国产| 日韩有码在线播放| 精品日本一区二区三区在线观看| 免费不卡欧美自拍视频| 国产欧美日韩综合一区在线观看| 一本色道久久综合亚洲二区三区| 久久久com| 国产在线精品一区二区中文| 日本一区网站| 精品国产一区二区三区麻豆小说| 久久久天堂国产精品| 黄色一级在线视频| 欧美激情亚洲激情| 国产成人手机视频| 91精品国产综合久久久久久久久| 欧美 日韩 亚洲 一区| 亚洲精品成人三区| 国产精品久久久久久久av电影| 成人免费福利在线| 日韩av大片在线| 欧美成人在线网站| 日韩在线资源网| 99精品欧美一区二区三区| 国严精品久久久久久亚洲影视| 午夜精品短视频| 精品久久久久久亚洲| 久久久久久一区二区三区| 国产精品亚洲不卡a| 欧美日韩性生活片| 色综合久久久久无码专区| 欧美日本黄视频| 日韩在线视频免费观看高清中文| 成人在线观看a| 欧美国产视频在线观看| 一区二区三区国产福利| 日韩一级裸体免费视频| 国产精品av免费| 国产美女在线一区| 男女视频网站在线观看| 亚洲精品第一区二区三区| 国产精品毛片va一区二区三区| 久久av高潮av| 91精品国产综合久久香蕉| 国产欧美精品va在线观看| 精品人妻人人做人人爽| 日韩 欧美 高清| 中文字幕色呦呦| 国产精品劲爆视频| 久久精品国产一区| 色噜噜狠狠狠综合曰曰曰88av| 波多野结衣综合网| 国产久一道中文一区| 国产深夜精品福利| 国产一区二区三区黄| 精品一区二区久久久久久久网站| 欧美人与性禽动交精品| 日韩欧美电影一区二区| 日本在线精品视频| 污污污污污污www网站免费| 亚洲国产精品日韩| 亚洲一区二区三区欧美| 国产精品免费视频一区二区| 久久久久久香蕉| 日韩有码在线视频| 久久久久这里只有精品| 99久久综合狠狠综合久久止| 97久久精品人搡人人玩| 99热在线播放| 91干在线观看| 国产成人精品在线| 日韩在线一区二区三区免费视频| 久久精品ww人人做人人爽| 久久精品日产第一区二区三区乱码| 久久久久福利视频| 九色综合婷婷综合| 国产精品视频在线观看| 久久精品福利视频| 国产九色91| 91av在线不卡| 久久视频免费在线| 欧美一区二区视频在线播放| 亚洲国产高清国产精品| 国内精品久久久久伊人av| 99色这里只有精品| 超碰91人人草人人干| 中文字幕一区二区中文字幕| 黄页免费在线观看视频| 国产成人黄色片| 日韩免费在线视频| 日韩美女免费线视频| 精品一区二区三区无码视频| 91精品国产高清久久久久久久久| 久久久久久久一区二区| 精品久久久久久一区二区里番| 午夜老司机精品| 日韩视频专区| 国产精品亚洲自拍| 久久精品国产亚洲精品2020| 一区二区三区四区国产| 青青在线免费观看视频| 成人av在线网址| 久久精品欧美视频| 亚洲精品中文字幕在线| 欧美精品欧美精品| 久久久影院一区二区三区| 久久天天躁夜夜躁狠狠躁2022| 性欧美长视频免费观看不卡| 好吊色欧美一区二区三区四区| 91福利视频在线观看| 久久综合伊人77777| 欧美一区二区激情| 国产乱码精品一区二区三区中文| www.国产一区| 午夜精品久久久久久久男人的天堂| 国严精品久久久久久亚洲影视| 久久男人的天堂| 欧美激情国产高清| 欧美高清一区二区| 国产成人精品久久二区二区| 中国人体摄影一区二区三区| 狠狠色综合网站久久久久久久| 久久99精品久久久久久久青青日本|