用C制作学生信息管理系统范本_第1页
用C制作学生信息管理系统范本_第2页
用C制作学生信息管理系统范本_第3页
用C制作学生信息管理系统范本_第4页
用C制作学生信息管理系统范本_第5页
已阅读5页,还剩50页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

年4月19日用C制作学生信息管理系统文档仅供参考课程设计(论文)学生信息管理系统计算机系计算机科学与技术级3班:冯深海()指导教师:王磊完成日期:6月12日蚌埠学院教务处制摘要随着科学技术的不断进步,计算机科学日渐成熟,其强大的功能已为人们深刻认识,它已进入人类社会的各个领域并发挥着越来越重要的作用。作为计算机应用的一个重要部分,信息查询系统是一个由用户和计算机组成的进行信息管理、信息收集、存储处理、传递使用和维护的软件系统。学生信息管理系统是学校管理学生信息的一种必不可少的的工具,它相对与手工书写管理更加便利,快捷,节约大量时间,大幅提高日常查询效率。关于学生信息管理系统,论文主要分几个重点部分来介绍它的功能的实现。对各个功能的描述,内容简洁,明了,结构紧凑。学生信息管理系统能够满足用户的需求,具体体现在对学生信息的录入,修改,查询,修改等操作。实现其中的操作除了对各个类中代码书写,更重要的还需要书写与后台数据库交互的代码,满足数据库信息的输入和输出。学生信息管理系统的开发目的是为了实现学生个人信息的信息化管理。本系统需要完成功能有:1

.登录学生管理系统;2

.录入学生信息,包括学号,姓名,性别,出生日期;3

.修改已知学号的学生信息;4

.删除已知学号的学生信息;5

.查询已知学号的学生信息;关键词登录(Login),录入(FormAddStudent),修改(studentmodify),删除(studentdelete),查询(studensearch)第一章引言(或概述)第一章引言(或概述)学生信息管理系统开发我们需具备对后台数据库表的建立,插入,查询,删除,更新,VisualStudio工具的使用和面向对象C#语言等知识。经过对学生信息管理系统的设计慢慢了解,深入学习,从而达到熟练掌握.NET基本结构以及C#语言的基本知识和技能;基本掌握面向对象程序开发的基本思路和方法;掌握ADO.NET数据库开发基本知识;能够利用所学的基本知识和技能,进行简单数据库应用程序设计。根据课题的要求,给出解决问题的方案,经过分析问题、分解问题来解决问题,最终达到熟练掌握C#语言的运用和VisualStudio工具的使用。第二章设计预案第二章2.1学生信息管理系统的介绍2.1学生信息管理系统的介绍学生信息管理系统主要分为四种模块:录入模块、删除模块、修改模块、查找模块。逐步对各个模块的代码书写,实现多种功能,让用户快速而便捷地使用学生信息管理系统。用户能够录入学生信息,输入学生的学号从而删除学生信息、查找学生信息、修改学生信息。2.22.2.1开发方案2.2.1开发方案本人计划编写一个人学生信息管理系统,主要功能是满足用户对学生信息的管理,包括录入、删除、修改、查询功能。2.2.2模块设计及分析本次设计主要分为四种模块:录入模块、删除模块、修改模块、查找模块、详细能够参考下图:FormMain界面FormMain界面用户登录用户登录FFormMain界面操作指令操作指令录入学生基本信息注销学生信息管理系统按学号查找学生信息按学号删除学生信息按学号修改学生信息录入学生基本信息注销学生信息管理系统按学号查找学生信息按学号删除学生信息按学号修改学生信息学生基本信息表学生基本信息表图2-1第三章设计步骤和要点设计步骤和要点本次设计和数据库紧密相连,首先我们根据题意设计相关的数据库以及相关的数据表(book,manager,user)。然后我们把这次的设计内容分成了若干个模块,逐次实现各个模块的功能,这样不但便于功能的实现,而且外观美观,层次清晰。制作过程主要是页面的设计和相关代码的编写。3.1数据库设计说明学生信息数据表列名数据类型数据长度允许null备注snonchar9不允许学生学号snamenvarchar20允许学生姓名sexnchar2允许学生性别sbirthdaynchar10允许出生日期图3-1学生信息数据表用户登录表列名数据类型数据长度允许null备注idint不允许usernamenvarchar10允许用户名passwordnvarchar10允许登录密码图3-2用户登录表3.2数据库的完整性和安全性数据库中关系模型完整性约束:实体完整性、参照完整性、和用户定义完整性。其实实体完整性和参照完整性是关系模型中必须满足的完整性条件。因此用户在使用数据库必须遵守完整性规则:实体完整性规则、参照完整性规则、用户定义完整性规则。在关系模型中以主码作为唯一标识,因此主码不能为空。总的来说数据库完整性是指数据的正确性和相容性。例如本系统中学生学号必须唯一;性别只能是男或女等.数据库是否具备完整性关系到数据库系统能否真实地反映现实世界,因此维护数据库的完整性是非常重要的.数据库的安全性是指保护数据库以防止不合法的使用所造成的数据泄露,更改,或者破坏。安全性问题不是数据库系统所独有的,所有计算机系统都有这个问题,只是在数据库系统中大量数据集中存放,而且为许多最终用户直接共享,从而使安全问题更为突出,系统安全保护措施是否有效是数据库系统的主要指标之一.3.3登录模板设计为了系统的安全,在进入系统之前首先会出现一个登录模块,用户只有在输入正确的用户名和正确的密码之后,才能进入系统。用户登录窗体中放置了两个文本框(textbox),用来输入用户名和密码;两个按钮(Button)用来登录、取消。截图1图3-3登录窗口登录代码的关键部分和代码的简单说明:privatevoidbutton1_Click(objectsender,EventArgse)//构造函数,返回值空类型,{//调用dataaccesslayer层的login()方法,类实例化SQLHelpersqlhelper=newSQLHelper();inttotal=sqlhelper.login(textBoxusername.Text.Trim(),textBoxpasword.Text.Trim());//返回一个整型if(total>0){FormMainmain=newFormMain();main.Show();this.Hide();}else{textBoxusername.Text="";textBoxpasword.Text="";//用户名和密码清空textBoxusername.Focus();//光标恢复原位MessageBox.Show("用户名或密码错误","警告",MessageBoxButtons.OK);}}3.4FormMain主界面设计登陆成功后即可进入FormMain主界面模块。窗体名称为学生信息管理系统,有两大主要控件:系统、档案。其中系统中包括注销,退出按钮。点击注销按钮返回到登录界面,点击退出按钮退出学生管理系统;点击档案按钮进入到操作指令(录入学生信息、删除学生信息、查找学生信息、修改学生信息)按钮,点击一下进入到各个窗口,使用相应的功能。截图2图3-4学生信息管理系统图3-5学生信息管理系统设计FormMain主界面的关键代码和代码的简单说明:1.privatevoid注销ToolStripMenuItem_Click(objectsender,EventArgse){Formloginlogin=newFormlogin();login.ShowDialog();//显示登录窗口}2.privatevoid退出ToolStripMenuItem_Click(objectsender,EventArgse){this.Close();//退出学生信息管理系统}3.privatevoid录入学生信息ToolStripMenuItem_Click(objectsender,EventArgse){FormAddStudentaddstudent=newFormAddStudent();addstudent.ShowDialog();//显示录入学生信息窗口if(addstudent.DialogResult==DialogResult.OK)//判断显示窗口时用的标识是否与系统中的一样{bind();}//调用bind方法}BindingSourcebs=newBindingSource();//绑定数据源这样的一个类,进行类的实例化publicvoidbind()//构造函数{bs.DataSource=newSQLHelper().CreateTable();dataGridView1.DataSource=bs;}//经过数据源(DataSource)这个渠道把控件(dataGridView1)与反馈数据绑定在一起6.privatevoid删除学生信息ToolStripMenuItem_Click(objectsender,EventArgse){FormDeleteStudentdelete=newFormDeleteStudent();delete.ShowDialog();//刷新网格if(delete.DialogResult==DialogResult.OK){bind();}}7.进入查询窗口的实现两句代码:Studentserchsearch=newStudentserch();search.ShowDialog();8.Studentmodifymodify=newStudentmodify();modify.ShowDialog();if(modify.DialogResult==DialogResult.OK){bind();}3.5录入学生信息模块设计创立一个新的窗体Form2,,将Form2改名为录入学生信息,在该窗体中设置控件,点击其中的控件按钮进入相应代码编写的地方,进行代码的编写。截图3图3-6录入学生信息代码编写要点和代码说明:1.string学号=textBoxsno.Text.Trim();string姓名=textBoxsname.Text.Trim();string性别=comboBoxsex.Text.Trim();string日期=textBoxbirthday.Text.Trim();//定义4个字符串型变量(学号,姓名,性别,日期),分别把控件的内容赋给她们2.try{……你的代码};catch(){检验并给出提示};close();//取消录入3.6删除学生信息模块设计创立一个新的窗体,,将该窗体命名为删除学生信息,在该窗体中设置控件,点击其中的控件按钮进入相应代码编写的地方,进行代码的编写。将各个控件中属性名改为易于识别名字,这样在编写代码时不会被混淆。删除学生信息是已知学号进行删除的。系统经过录入功能录入了学生信息,在经过输入学号与后台数据库中已存的学号进行比较,若相等则删除,否则不删除并给出相应提示。截图4图3-7删除学生信息代码编写要点和代码说明:newStudentDAO().delete(textBoxsno.Text.Trim());这行代码是把输入的学号(textBoxsno中的内容)作为一个参数传到StudentDAO类中delete构造函数中,然后与后台中已存在的学号进行比较。publicvoiddelete(stringsno){stringsql="deletefromstudentwheresno=@sno";//定义一个字符串变量并赋值SqlParameter[]para=newSqlParameter[]//"SqlParameter"是系统中的类,属于不能继承的类。值引用是不能够继承的。此行是类的实例化{newSqlParameter("sno",SqlDbType.NChar)//"SqlDbType"指定特定的字段和数据类型};inti=0;para[i++].Value=sno;sqlhelper.ExecuteNonQuery(sql,para)//传递参数到SQLhelper中,与后台已存数据进行比较之后做出相应的参考}。3.7查找学生信息模块设计查找学生信息是以知道学生的学号为前提,只要后台数据库中已经录入一些学生的信息,正确输入学生学号即可查找到要查找的学生信息。实现这个功能,首先要创立一个窗体,设置一些控件。点击这些控件进行代码的编写。下面是查找学生信息模块的截图。截图5图3-8查询学生信息查询关键代码的设计和简单说明:点击确定按钮进入代码编辑位置,进行代码的编写。if(textBox1sno.Text=="")//判断学号输入处是否为空bind();//调用构造函数else{bs.DataSource=newSQLHelper().CreateTable1(textBox1sno.Text.Trim());dataGridView2.DataSource=bs;}//不相等时,经过数据源(DataSource)这个渠道把控件(dataGridView1)与反馈数据绑定在一起,在控件(dataGrrridView1)中显示table表。privatevoidbind(){MessageBox.Show("查询失败,请重新输入!","提示");textBox1sno.Focus()//光标返回到开始;return;}3.8修改学生信息模块设计用户录入学生信息之后而且发现录入有误,这时就能够使用修改功能。点击修改按钮进入修改界面,输入要修改的学生的学号,再修改学生的其它的信息。点击确定按钮,进入编辑位置,进行代码的编写。下面是修改界面的的截图。截图6图3-9修改学生信息修改关键代码的设计和简单说明:点击确定按钮进入编写代码位置,进行代码编写。(stringsno=textBoxsno.Text.Trim();stringsname=textBoxsname.Text.Trim();stringsex=comboBoxsex.Text.Trim();stringsbirthday=textBoxsbirthday.Text.Trim();)这几段代码是定义字符串变量,将各种控件中的内容赋值给变量。这句“newStudentDAO().modify(sno,sname,sex,sbirthday)”代码含义是指将参数传入到modify构造函数中,进行相应的操作。“updatestudentsetsname=@snamewheresno=@snoupdatestudentsetsex=@sex”这串代码是用于后台数据库的更新,从而实现系统删除功能的实现。第四章系统测试第四章系统测试4.1登录测试图4—1登录测试输入用户名和密码,进入学生信息管理系统:图4—1登录测试4.2录入测试现在系统中有五个学生信息,使用录入功能录入一个学号为“006号”的学生信息,如图所示:图4-2录入测试4.3删除测试上图已存在六个学生的信息,现要删除学号为”002号、006号“的学生信息。操作结果如图所示:图4-3删除测试4.4查找测试查询学号为”001号“学生的信息,查询结果如图所示:图4-4查询学生信息4.5修改测试修改学号为”003号“的学生信息。如图所示:分别将姓名、性别、出生日期中信息改为“王小宝、女、1990-12-01”。修改后的结果如图所示:图4-5修改学生信息第五章设计感悟结论经过这段时间的学习,让我对C#有了新的认识。要想学好这门语言,需要长期的知识积累和上机实践而且不断地总结经验。在用C#开发一个项目时,遇到自己不能解决的问题能够经过积极思考、查询资料、询问老师、同学这些方式来解决。这次我设计的课题是学生信息管理系统。在设计这个课题的过程中,面对着许多问题,,在本次设计过程中,我是逐步对每个模块进行编码设计,完成每个功能。要求在每个阶段结束之前经过人工检查,完善每个模块的功能,尽早发现错误并纠正,完成每个模块测试之后再进行系统测试。致谢致谢这次课程设计主要感谢我们的指导老师(王磊)。在这个项目刚刚确定下来,我们一头雾水,不知如何开发。因此前期的制作,主要是老师和我们一起开发而且给我们讲解。在老师的引导下,我们逐步完成了整个项目的研发。在这里我们感谢指导老师。参考文献参考文献[1]王珊,萨师煊《数据库系统概述》,高等教育出版社[2]《C#高级程序设计》,清华大学出版社附录:程序清单附录:程序清单//登录usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingDataAccessLayer;namespaceStudentMIs{publicpartialclassFormlogin:Form{publicFormlogin(){InitializeComponent();}privatevoidbutton1_Click(objectsender,EventArgse){//调用dataaccesslayer层的login()方法,SQLHelpersqlhelper=newSQLHelper();inttotal=sqlhelper.login(textBoxusername.Text.Trim(),textBoxpasword.Text.Trim());if(total>0){FormMainmain=newFormMain();main.Show();this.Hide();}else{textBoxusername.Text="";textBoxpasword.Text="";textBoxusername.Focus();MessageBox.Show("用户名或密码错误","警告",MessageBoxButtons.OK);}}privatevoidlabel2_Click(objectsender,EventArgse){}privatevoidFormlogin_Load(objectsender,EventArgse){}privatevoidtextBoxpasword_TextChanged(objectsender,EventArgse){}}}//FormMain主界面usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingDataAccessLayer;namespaceStudentMIs{publicpartialclassFormMain:Form{publicFormMain(){InitializeComponent();}privatevoid录入学生信息ToolStripMenuItem_Click(objectsender,EventArgse){FormAddStudentaddstudent=newFormAddStudent();addstudent.ShowDialog();if(addstudent.DialogResult==DialogResult.OK){bind();}}BindingSourcebs=newBindingSource();publicvoidbind(){bs.DataSource=newSQLHelper().CreateTable();dataGridView1.DataSource=bs}privatevoidFormMain_Load(objectsender,EventArgse){bind();}privatevoid删除学生信息ToolStripMenuItem_Click(objectsender,EventArgse){FormDeleteStudentdelete=newFormDeleteStudent();delete.ShowDialog();//刷新网格if(delete.DialogResult==DialogResult.OK){bind();}}privatevoiddataGridView1_CellContentClick(objectsender,DataGridViewCellEventArgse){}privatevoid档案ToolStripMenuItem_Click(objectsender,EventArgse){}privatevoid查询学生信息ToolStripMenuItem_Click(objectsender,EventArgse){Studentserchsearch=newStudentserch();search.ShowDialog();}privatevoid修改学生信息ToolStripMenuItem_Click(objectsender,EventArgse){Studentmodifymodify=newStudentmodify();modify.ShowDialog();if(modify.DialogResult==DialogResult.OK){bind()}}privatevoid退出ToolStripMenuItem_Click(objectsender,EventArgse){Application.Exit();}privatevoid注销ToolStripMenuItem_Click(objectsender,EventArgse){Formloginlogin=newFormlogin();login.ShowDialog();}}}//录入usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingDataAccessLayer;usingSystem.Data.SqlClient;namespaceStudentMIs{publicpartialclassFormAddStudent:Form{publicFormAddStudent(){InitializeComponent();}privatevoidbuttonok_Click(objectsender,EventArgse){string学号=textBoxsno.Text.Trim();string姓名=textBoxsname.Text.Trim();string性别=comboBoxsex.Text.Trim();string日期=textBoxbirthday.Text.Trim();try{newStudentDAO().insert(学号,姓名,性别,日期);this.DialogResult=DialogResult.OK;MessageBox.Show("录入成功","提示");}catch(SqlExceptionex){switch(ex.Number){case2627:MessageBox.Show("已经存在此学号!请检查。","错误:",MessageBoxButtons.OK,MessageBoxIcon.Error);break;default:stringinfo=string.Format("访问数据库出错!\n具体原因为:{0}\n错误代码:{1}",ex.Message,ex.Number);MessageBox.Show(info);break;}return;}catch(Exceptionerr){MessageBox.Show(err.Message,"出错了:",MessageBoxButtons.OK,MessageBoxIcon.Error);return;}}privatevoidlabel1_Click(objectsender,EventArgse){}privatevoidFormAddStudent_Load(objectsender,EventArgse){}privatevoidtextBoxsno_TextChanged(objectsender,EventArgse){}privatevoidbuttoncancel_Click(objectsender,EventArgse){Close();}}}//删除usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingDataAccessLayer;usingSystem.Data.SqlClient;namespaceStudentMIs{publicpartialclassFormDeleteStudent:Form{publicFormDeleteStudent(){InitializeComponent();}privatevoidbuttonok_Click(objectsender,EventArgse){newStudentDAO().delete(textBoxsno.Text.Trim());this.DialogResult=DialogResult.OK;MessageBox.Show("删除成功","提示");}privatevoidFormDeleteStudent_Load(objectsender,EventArgse){}privatevoidtextBoxsno_TextChanged(objectsender,EventArgse){}privatevoidbutton2_Click(objectsender,EventArgse){Close();}}}//查找 usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;usingDataAccessLayer;namespaceStudentMIs{publicpartialclassStudentserch:Form{publicStudentserch(){InitializeComponent();}privatevoidStdentSelect_Load(objectsender,EventArgse){}privatevoidtextBox1_TextChanged(objectsender,EventArgse){}BindingSourcebs=newBindingSource();privatevoidbuttonok_Click(objectsender,EventArgse){if(textBox1sno.Text=="")bind();else{bs.DataSource=newSQLHelper().CreateTable1(textBox1sno.Text.Trim());dataGridView2.DataSource=bs;}}privatevoidbind(){MessageBox.Show("查询失败,请重新输入!","提示");textBox1sno.Focus();return;}privatevoidtextBox1_TextChanged_1(objectsender,EventArgse){}privatevoidbuttoncancle_Click(objectsender,EventArgse){}privatevoidtextBoxsno_TextChanged(objectsender,EventArgse){}privatevoidtextBoxsname_TextChanged(objectsender,EventArgse){}privatevoiddataGridView1_CellContentClick(objectsender,DataGridViewCellEventArgse){}privatevoidbutton1_Click(objectsender,EventArgse){Close();}}}//修改usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingDataAccessLayer;namespaceStudentMIs{publicpartialclassStudentmodify:Form{publicStudentmodify(){InitializeComponent();}privatevoidcomboBox1_SelectedIndexChanged(objectsender,EventArgse){}privatevoidbutton0k_Click(objectsender,EventArgse){stringsno=textBoxsno.Text.Trim();stringsname=textBoxsname.Text.Trim();stringsex=comboBoxsex.Text.Trim();stringsbirthday=textBoxsbirthday.Text.Trim();newStudentDAO().modify(sno,sname,sex,sbirthday);this.DialogResult=DialogResult.OK;MessageBox.Show("修改成功!","提示");}privatevoidtextBox1_TextChanged(objectsender,EventArgse){}privatevoidStudentmodify_Load(objectsender,EventArgse){}privatevoidtextBoxsname_TextChanged(objectsender,EventArgse){}privatevoidtextBoxsbirthday_TextChanged(objectsender,EventArgse){}privatevoidbuttoncancle_Click(objectsender,EventArgse){Close();}}}//SQLHELPER/*****/usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Collections;usingSystem.Data;usingSystem.Data.SqlClient;namespaceDataAccessLayer{publicclassSQLHelper{publicintlogin(string用户名,string密码)//负责登陆数据库的方法{stringconnstr=@"server=.\;database=student;integratedsecurity=sspi";using(SqlConnectionconn=newSqlConnection(connstr)){conn.Open();using(SqlCommandcmd=conn.CreateCommand()){cmd.CommandText="selectcount(*)fromtloginwhereusername=@unandpassword=@pwd";cmd.Parameters.Add(newSqlParameter("un",用户名));cmd.Parameters.Add(newSqlParameter("pwd",密码));inttotal=Convert.ToInt32(cmd.ExecuteScalar());//返回值类型不确定,是一个objectreturntotal;}}}publicvoidExecuteNonQuery(stringsql,paramsSqlParameter[]para){stringconnstr=@"server=.\;database=student;integratedsecurity=sspi";using(SqlConnectionconn=newSqlConnection(connstr)){conn.Open();using(SqlCommandcmd=newSqlCommand(sql,conn)){cmd.Parameters.AddRange(para);cmd.ExecuteNonQuery();}}}publicDataTableCreateTable(){DataTabletable=newDataTable();stringconnstr=@"server=.\;database=student;integratedsecurity=sspi";using(SqlConnectionconn=newSqlConnection(connstr)){conn.Open();stringsql="select*fromstudent";using(SqlDataAdapteradapter=newSqlDataAdapter(sql,conn)){adapter.Fill(table);returntable;}}}publicDataTableCreateTable1(string学号){DataTabletable=newDataTable();stringconnstr=@"server=.\;database=student;integratedsecurity=sspi";using(SqlConnectionconn=newSqlConnection(connstr)){conn.Open();using(SqlCommandcmd=conn.CreateCommand()){cmd.CommandText="selectsno学号,sname姓名,sex性别,birthday出生日期fromstudentwheresno=@sno";cmd.Parameters.Add(newSqlParameter("sno",学号));SqlDataAdapteradapter=newSqlDataAdapter(cmd);adapter.Fill(table);retu

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论