ImageVerifierCode 换一换
格式:DOCX , 页数:24 ,大小:242.34KB ,
资源ID:23777907      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/23777907.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(高校学生就业管理系统方案.docx)为本站会员(b****7)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

高校学生就业管理系统方案.docx

1、高校学生就业管理系统方案一、题目概述(容及要求)实现院系、专业、毕业生信息管理(设有就业标志,初值为待业); 实现职业类型、职业信息(职业号、类型号、需求数量、聘用数量、用 人单位)登记; 实现毕业生就业登记(学号、职业号),自动修改相应学生的就业标志 和职业的聘用数量,并保证聘用数量不大于需求数量; 创建存储过程查询毕业生的人数、待业人数、就业人数和就业率; 创建存储过程查询各专业的毕业生就业率; 创建 check 约束限制毕业生性别必须为男或女; 建立表间关系。二、需求分析2.1高校就业管理系统 高校就业管理系统化可以完成对学生信息的修改、查询(就业率,已就业信息,未就业信息,公司信息)、

2、添加(学生基本信息,院系信息,公司信息)、退出功能。初步完成了对高校就业信息的管理,界面设计简洁,使用简单。2.2高校就业管理系统数据流图图2.1 高校就业管理系统数据流图2.3高校就业系统管理系统功能框图图2.2 高校就业系统管理系统功能框图三、概要设计3.1数据模型(E-R图)图3 高校学生就业管理E_R图3.2数据库表格结构设计表3.1 学院信息表列 名数据类型是否为空说明院系编号char(4)NOT NULL主键院系名称char(20)NULL表3.2 专业信息表列 名数据类型是否为空说明专业编号char(6)NOT NULL 主键专业名称char(20)NULL表3.3 员工信息表列

3、名数据类型是否为空说明学号char(10)NULL职业号char(10)NULL 表3.4 用户信息表列名数据类型是否为空说明用户名char(10)NULL密码char(10)NULL权限char(10)NULL表3.5 用人单位信息表列名数据类型是否为空说明职业号char(10)NOT NULL主键类型号char(10)NULL需求数量intNULL聘用数量intNULL用人单位char(20)NULL表3.6 学生信息表列名数据类型是否为空说明char(20)NULL性别char(2)NOT NULLCheck(男,女)出生年月char(10)NULL籍贯char(20)NULL专业编号c

4、har(6)NULL院系编号char(4)NULL就业标志char(20)NULL初值为“待就业”表3.7 职业信息表列名数据类型是否为空说明类型号char(10)NULL主键类型名称char(20)NULL四、详细设计4.1登录界面登陆界面的设计如图4.1所示:图4.1 登陆界面设计代码如下:private void button1_Click(object sender, EventArgs e) if (textBox1.Text != ) if (textBox2.Text != ) DataConnection.getConn(); string id = textBox1.Text

5、.Trim(); string pwd = textBox2.Text.Trim(); string sql = select count(*) from login where 用户名= + id + and 密码= + pwd + ; int state = DataConnection.GetCountInfoBySql(sql); if (state = 0 | state 1) MessageBox.Show(用户名或密码错误); else Form1 f2 = new Form1(); f2.Show(); this.Hide(); DataConnection.CloseConn

6、(); else MessageBox.Show(密码为空请输入.); else MessageBox.Show(用户名为空请输入.); private void button2_Click(object sender, EventArgs e) textBox1.Text = ; textBox2.Text = ; 4.2修改界面修改界面的设计如图4.2所示:图4.2 修改界面设计代码如下:private void button7_Click(object sender, EventArgs e) if (textBox1.Text != ) string id = textBox1.Tex

7、t.Trim(); if (radioButton3.Checked = true) if (comboBox1.Text != ) if (comboBox4.Text != ) string a = select sum(需求数量) from profesion_student,type where profesion_student.类型号=type.类型号 and profesion_student.用人单位= + comboBox1.Text.Trim() + and 类型名称= + comboBox4.Text.Trim() + ; int b = DataConnection.G

8、etCountInfoBySql(a); a = select sum(聘用数量) from profesion_student,type where profesion_student.类型号=type.类型号 and profesion_student.用人单位= + comboBox1.Text.Trim() + and 类型名称= + comboBox4.Text.Trim() + ; int c = DataConnection.GetCountInfoBySql(a); if (c 0) sql= delete from employment where 学号= + id + ;

9、int f = DataConnection.UpdateDate(sql); sql = select count(*) from employment where 职业号= + s + ; int d = DataConnection.GetCountInfoBySql(sql); sql = update profesion_student set 聘用数量= + d + where 职业号= + s + ; DataConnection.UpdateDate(sql); else MessageBox.Show(学号为空请输入.); private void tabPage2_Clic

10、k(object sender, EventArgs e) comboBox2.Items.Clear(); comboBox1.Items.Clear(); comboBox4.Items.Clear(); comboBox6.Items.Clear(); radioButton3.Checked = false; radioButton1.Checked = false; radioButton2.Checked = false; radioButton4.Checked = false; string sql = select 专业名称 from department order by

11、专业编号 asc; SqlDataReader dr = DataConnection.GetSqlDataReader(sql); while (dr.Read() comboBox2.Items.Add(dr专业名称); sql = select distinct 用人单位 from profesion_student; dr = DataConnection.GetSqlDataReader(sql); while (dr.Read() comboBox1.Items.Add(dr用人单位); sql = select 类型名称 from dbo.type; dr = DataConne

12、ction.GetSqlDataReader(sql); while (dr.Read() comboBox4.Items.Add(dr类型名称); sql = select 院系名称 from academy order by 院系编号 asc; dr = DataConnection.GetSqlDataReader(sql); while (dr.Read() comboBox6.Items.Add(dr院系名称); if (textBox1.Text != ) string id = textBox1.Text.Trim(); string sql1 = select from stu

13、dent_info where 学号= + id + ; textBox2.Text = DataConnection.GetDataString(sql1); sql1 = select 性别 from student_info where 学号= + id + ; string s = DataConnection.GetDataString(sql1); if (s = 男) radioButton4.Checked = true; if (s = 女) radioButton1.Checked = true; sql1 = select 出生年月 from student_info w

14、here 学号= + id + ; textBox3.Text = DataConnection.GetDataString(sql1); sql1 = select 籍贯 from student_info where 学号= + id + ; textBox4.Text = DataConnection.GetDataString(sql1); sql1 = select 专业名称 from student_info,department where student_info.专业编号=department.专业编号 and 学号= + id + ; comboBox2.Text = Da

15、taConnection.GetDataString(sql1); sql1 = select 院系名称 from student_info,academy where student_info.院系编号=academy.院系编号 and 学号= + id + ; comboBox6.Text = DataConnection.GetDataString(sql1); sql1 = select 就业标志 from student_info where 学号= + id + ; string s1 = DataConnection.GetDataString(sql1).Trim(); if

16、(s1 = 待就业) radioButton2.Checked = true; if (s1 = 已就业) radioButton3.Checked = true; sql1 = select 用人单位 from profesion_student,employment where profesion_student.职业号=employment.职业号 and employment.学号= + id + ; comboBox1.Text = DataConnection.GetDataString(sql1); sql1 = select 类型名称 from type,profesion_s

17、tudent,employment where type.类型号=profesion_student.类型号 and profesion_student.职业号=employment.职业号 and employment.学号= + id + ; comboBox4.Text = DataConnection.GetDataString(sql1); else MessageBox.Show(学号为空请输入.); private void button1_Click(object sender, EventArgs e) if (textBox1.Text != ) string sql =

18、select 院系编号 from academy where 院系名称= + comboBox6.Text.Trim() + ; string a = DataConnection.GetDataString(sql).Trim(); sql = select 专业编号 from department where 专业名称= + comboBox2.Text.Trim() + ; string b = DataConnection.GetDataString(sql).Trim(); if (radioButton1.Checked = true) sql = update student_i

19、nfo set 性别= + radioButton1.Text + where 学号= + textBox1.Text.Trim() + ; int g = DataConnection.UpdateDate(sql); if (radioButton4.Checked = true) sql = update student_info set 性别= + radioButton4.Text + where 学号= + textBox1.Text.Trim() + ; int f = DataConnection.UpdateDate(sql); sql = update student_in

20、fo set = + textBox2.Text.Trim() + ,出生年月= + textBox3.Text.Trim() + ,籍贯= + textBox4.Text.Trim() + ,专业编号= + b + ,院系编号= + a + where 学号= + textBox1.Text.Trim() + ; int d = DataConnection.UpdateDate(sql); else MessageBox.Show(学号为空请输入.); 4.3查询界面查询就业率界面的设计如图4.3所示:图4.3 查询就业率界面设计代码如下:private void tabPage3_Cli

21、ck(object sender, EventArgs e) string sql = select count(*) from student_info; int a=DataConnection.GetCountInfoBySql(sql); label3.Text = a.ToString(); sql = select count(*) from student_info where 就业标志=已就业; int b = DataConnection.GetCountInfoBySql(sql); label5.Text = b.ToString(); sql = select coun

22、t(*) from student_info where 就业标志=待就业; label4.Text = DataConnection.GetCountInfoBySql(sql).ToString(); float c =(float) b / a; label6.Text = c.ToString(); comboBox3.Items.Clear(); sql = select 专业名称 from department order by 专业编号 asc; SqlDataReader dr = DataConnection.GetSqlDataReader(sql); while (dr.

23、Read() comboBox3.Items.Add(dr专业名称); comboBox3.Text = ; label10.Text = ; private void button2_Click(object sender, EventArgs e) /comboBox3.Text = ; label10.Text = ; if (comboBox3.Text != ) string sql = select count(*) from student_info,department where student_info.专业编号=department.专业编号 and 专业名称= + co

24、mboBox3.Text + ; int a = DataConnection.GetCountInfoBySql(sql); sql = select count(*) from student_info,department where student_info.专业编号=department.专业编号 and 就业标志=已就业 and 专业名称= + comboBox3.Text + ; int b = DataConnection.GetCountInfoBySql(sql); if (a = 0) label10.Text = 该专业学生人数为0; else float c = (float)b / a; label10.Text = c.ToString(); else MessageBox.Show(“专业为空请选择.”); 查询已就业信息界面的设计如图4.4所示:图4.4 查询已就业信

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1