员工信息表[staff_users]
|id|姓名|年龄|性别|户籍|银行卡|所属银行|转账|联系方式|专长|入职日期|离职时间|
|--|--|
|id|name|age|sex|address|bank_card|bank_belongs|transfer|contact|can|created_time|end_time|
员工工资结算规则表 [staff_salarys]
|salary_id|员工id|用户姓名|基础工资|请假天数|一天请假扣除钱|加班小时数|每小时加班钱|创建时间|
|--|--|
|id|user_id|name|salary_base|counts_leave|money_leave|counts_overtime|money_overtime|create_time|
员工月工资统计表[staff_monthcount]
|id|员工id|姓名|基础工资|结算后工资|请假次数|一次请假扣除钱|加班次数|每次加班钱数|月份|
|--|--|
|id|user_id|name|salary_base|salary_final|counts_leave|money_leave|counts_overtime|money_overtime|month|
加班表 overtime
|id|员工id|用户姓名|加班开始时间|加班结束时间|
|--|--|
|id|user_id|name|create_time|end_time|
请假表 leave
|id|员工id|用户姓名|请假开始时间|请假结束时间|请假原因|
|--|--|
|id|user_id|name|create_time|end_time|cause|
权限表【auth】
create table auth(
auth_id smallint(6) unsigned not null auto_increment,
auth_name varchar(20) not null comment '权限名称',
auth_pid smallint(6) unsigned not null comment '父id',
auth_c varchar(32) not null default '' comment '控制器',
auth_a varchar(32) not null default '' comment '方法名',
primary key(auth_id)
)engine=innodb auto_increment=1 default charset =utf8
用户表【manager】
create table manager(
mg_id int(6) not null auto_increment,
mg_name varchar(32) not null,
mg_pwd varchar(40) not null,
mg_time int(11) unsigned not null comment '登陆的时间',
role_id tinyint(3) unsigned not null default '0' comment '角色id',
primary key(mg_id)
)engine=innodb auto_increment=1 default charset =utf8
角色表【role】
create table role(
role_id smallint(6) unsigned not null auto_increment,
role_name varchar(20) not null comment '角色名称',
role_auth_ids varchar(128) not null default '' comment '权限id',
role_auth_ac text comment '控制器操作',
primary key(role_id)
)engine=innodb auto_increment=1 default charset =utf8
员工信息表【staff_users】
create table staff_users(
id int(11) not null auto_increment,
name varchar(32) not null comment '姓名',
age tinyint(3) unsigned not null default '18' comment '年龄',
sex tinyint(1) not null comment '性别',
address varchar(32) comment '住址',
bank_card char(19) not null default '' comment '银行卡',
bank_belongs varchar(64) comment '所属银行',
transfer varchar(30) comment '转账',
contact char(11) comment '电话',
can varchar(32) default '' comment '专长',
created_time varchar(11) default '' comment '入职日期',
end_time varchar(11) default '' comment '离职时间',
status tinyint(1) default '1' comment '员工是否在职',
primary key(id)
)engine=innodb default charset =utf8;
员工工资结算规则表【staff_salarys】
create table staff_salarys(
id int(11) not null auto_increment,
user_id int(11) not null comment '员工id',
salary_base varchar(10) not null default '' comment '基础工资',
#counts_leave int(6) not null default 0 comment '请假次数',
money_leave double comment '每小时请假扣除钱',
#counts_overtime int(6) not null default 0 comment '加班次数',
money_overtime double comment '每小时加班钱',
created_time int(11) comment '添加时间',
primary key(id)
)engine=innodb default charset =utf8;
员工月工资统计表【staff_monthCount】
create table staff_monthCount(
id int(11) not null auto_increment,
user_id int(11) not null comment '员工id',
salary_base double not null default '0' comment '本月底薪',
times_leave double not null default '0' comment '月请假时间统计',
counts_leave int not null default '0' comment '月请假次数统计',
moneys_day int not null default '0' comment '请假一天扣钱多少',
salary_final double not null default '0' comment '本月最后工资',
counts_overtime double not null default '0' comment '加班时间统计',
money_hour double not null default '0' comment '加班一小时',
times_overtime double not null default '0' comment '月加班时间统计',
status tinyint(1) default '0' comment '未结算',
month int(4) comment '月份',
create_time int(11) comment '更新时间',
primary key(id)
)engine=innodb default charset =utf8;
加班表【overtime】
create table overtime(
id int(11) not null auto_increment,
user_id int(11) not null comment '员工id',
create_time int(11) comment '加班开始时间',
end_time int(11) comment '加班结束时间',
primary key(id)
)engine=innodb default charset =utf8;
请假表【uleave】
create table leavecounts(
id int(11) not null auto_increment,
user_id int(11) not null,
create_time int(11) comment '请假开始时间',
end_time int(11) comment '请假结束时间',
leave_days int(11) comment '请假天数',
cause varchar(200) comment '请假原因',
primary key(id)
)engine=innodb default charset =utf8;
//支付接口表
create table notes(
id int not null auto_increment,
partner char(6) not null comment '商户id',
ordernumber varchar(32) not null comment '商户订单号',
orderstatus char(1) not null default 0 comment '状态(1表示支付,0表示未支付)',
paymoney int unsigned not null comment '支付金额',
sysnumber varchar(32) not null comment '银宝商务订单号',
sign char(32) not null comment '签名',
attach text comment '备注信息',
time int(11) not null comment '添加时间',
primary key(id)
)engine=innodb default charset =utf8;