数据表

员工信息表[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;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349

推荐阅读更多精彩内容