College teachers performance pay system design and development management, source code download

Hello everyone, I am the founder of the whole micro-complete set of the team, this team is good at JAVA (SSM, SSH, SPRINGBOOT) , PYTHON, PHP, C #, Andrews and many other technologies.
Today we will analyze the performance of a university teacher salary management system (designed to pay for performance management system for college teachers benefited from management science and information technology combine to achieve effective management and automation features based on professional and college teachers of Personnel Management, information transparency , equity efficiency of the designed system through the division of labor and process several major functional modules, combined with the operational parameters of the system can automatically generate teacher performance allowance in order to achieve rational and optimal allocation of limited resources pay for performance of colleges and universities distribution, at the same time encourage faculty dedication, self-realization, realization of individual teachers and universities complement each other, harmony together win-win situation.) the project uses the framework for SSM (MYECLIPSE), the choice of development tools for MYECLIPSE. Teacher pay for performance management system for college background as a project.
To complete the system, we first need to analyze the needs of the system. A university teacher pay for performance management system should include user roles administrator, teacher. In order to allow the user a smooth landing system to complete the related operations, landing roles you need to set up an account and password for each field.
In order to complete the function of the system you need to set up payroll for teachers to record payroll information. It defines the relationship between the two in the payroll, wherein between instructors mingzi corresponding field of pay wages teachers id id field and a corresponding teacher
.

The summary results of all system data: administrator (admin), teachers (jiaoshi), wages (gongzi)

Administrators table

Field Name | Type | property | describe 
the above mentioned id |  INT ( 11 ) |  PRIMARY  KEY  | administrator the above mentioned id 
username |  VARCHAR ( 255 ) |  | account 
password |  VARCHAR ( 255 ) |  | password

 

Teacher table

Field Name | Type | property | describe 
the above mentioned id |  int ( 11 ) |  PRIMARY  KEY  | teachers in the above mentioned id 
mingzi |  VARCHAR ( 255 ) |  | name 
username |  VARCHAR ( 255 ) |  | account 
password |  VARCHAR ( 255 ) |  | password 
nianling |  VARCHAR ( 255 ) |  | age

 

payroll

Field Name | Type | property | describe 
the above mentioned id |  INT ( 11 ) |  PRIMARY  KEY  | pay the above mentioned id 
gongzi |  VARCHAR ( 255 ) |  | wage 
jiaoshi |  VARCHAR ( 255 ) |  | teachers 
jiaoshiid |  VARCHAR ( 255 ) |  | teachers in the above mentioned id 
yuefen |  VARCHAR ( 255 ) |  | month

 

Construction of the table statement

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------

-- ----------------------------

-- Table structure for gggongziguanli

-- ----------------------------

DROP TABLE IF EXISTS `t_admin`;

CREATE TABLE `t_admin` (`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '管理员id',`username` VARCHAR(255) DEFAULT NULL COMMENT '账号',`password` VARCHAR(255) DEFAULT NULL COMMENT '密码',PRIMARY KEY (`id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='管理员';

-- ----------------------------

DROP TABLE IF EXISTS `t_jiaoshi`;

CREATE TABLE `t_jiaoshi` (`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '教师id' , `Mingzi` VARCHAR ( 255 ) the DEFAULT  NULL the COMMENT ' name ' ,` username` VARCHAR ( 255 ) the DEFAULT  NULL the COMMENT ' account ' , `password` VARCHAR ( 255 ) the DEFAULT  NULL the COMMENT ' password ' ,` nianling` VARCHAR ( 255 ) the DEFAULT  NULL the COMMENT ' Age ' , PRIMARY  KEY ( `id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='教师';

-- ----------------------------

DROP TABLE IF EXISTS `t_gongzi`;

CREATE TABLE `t_gongzi` (`id` INT(11) NOT NULL AUTO_INCREMENT COMMENT '工资id',`gongzi` VARCHAR(255) DEFAULT NULL COMMENT '工资',`jiaoshi` VARCHAR(255 ) the DEFAULT  NULL the COMMENT ' teacher ' , `jiaoshiid` the INT ( . 11 ) the DEFAULT  NULL the COMMENT ' teacher ID ' ,` yuefen` VARCHAR ( 255 ) the DEFAULT  NULL the COMMENT ' month ' , a PRIMARY  KEY ( `id`) 

) ENGINE = MyISAM the DEFAULT the CHARSET = UTF8 the COMMENT = ' salary ' ;

 

Source Download

Guess you like

Origin www.cnblogs.com/qwcx/p/11520820.html