基于php的人力资源管理系统,基于thinkPHP框架的人力资源管理系统

【实例简介】

基于thinkPHP框架的人力资源管理系统,简单易学的PHP的代码

【实例截图】

【核心代码】

human

└── human

├── Human

│   ├── Common

│   │   └── data.txt

│   ├── Conf

│   │   └── config.php

│   ├── index.php

│   ├── Lib

│   │   └── Action

│   │   ├── EmployAction.class.php

│   │   ├── IndexAction.class.php

│   │   ├── OnlineAction.class.php

│   │   ├── PositionAction.class.php

│   │   ├── SectionAction.class.php

│   │   └── UserAction.class.php

│   ├── nbproject

│   │   ├── private

│   │   │   ├── private.properties

│   │   │   └── private.xml

│   │   ├── project.properties

│   │   └── project.xml

│   ├── Public

│   │   ├── css_body.css

│   │   ├── css_menu.css

│   │   ├── css_top.css

│   │   └── images

│   │   ├── admin_tlogo.jpg

│   │   ├── body_title_bg.gif

│   │   ├── body_title_left.gif

│   │   ├── body_title_right.gif

│   │   ├── booknopic.gif

│   │   ├── class_sclose.gif

│   │   ├── class_sopen.gif

│   │   ├── class_ssr.gif

│   │   ├── close.gif

│   │   ├── ddlogo.gif

│   │   ├── frame-l.gif

│   │   ├── frame_on.gif

│   │   ├── frame-r.gif

│   │   ├── ico_1.gif

│   │   ├── ico_2.gif

│   │   ├── ico_3.gif

│   │   ├── inputbut_bg.gif

│   │   ├── left_bg_top.gif

│   │   ├── login_input_bg.gif

│   │   ├── login_input_hr.gif

│   │   ├── login_submit.gif

│   │   ├── mb_bg.gif

│   │   ├── menu_title_bg.jpg

│   │   ├── mico_l.gif

│   │   ├── Mypic_top12.gif

│   │   ├── rcbox_title.gif

│   │   ├── top_bg_hr.jpg

│   │   ├── top_nav_bg.jpg

│   │   ├── top_nav_left.jpg

│   │   ├── top_nav_on.gif

│   │   ├── top_nav_right.jpg

│   │   ├── top_nav_sr.gif

│   │   └── top_sitelink_bg.gif

│   ├── Runtime

│   │   ├── ~app.php

│   │   ├── Cache

│   │   │   ├── 0573c70d8602d961e53f714ea77bd87c.php

│   │   │   ├── 20c1c2529072b32ee77d2c6c8e562041.php

│   │   │   ├── 2bffa668efe7a1121f361d5647239203.php

│   │   │   ├── 705a66fa5af9e93f3f3f15df0707d8f6.php

│   │   │   ├── 71c98be3f0fef674c0dcb2249ba59e8f.php

│   │   │   ├── 900b562aaefd25c05f14e119529cd517.php

│   │   │   ├── 9c23eafc5c74e8fd7a26a25e0e463b03.php

│   │   │   └── ef493554e033e205ddb69efa73dac2a3.php

│   │   ├── Data

│   │   │   └── _fields

│   │   │   ├── online.php

│   │   │   ├── sysconfig.php

│   │   │   └── user.php

│   │   ├── Logs

│   │   │   └── 11_06_01.log

│   │   └── ~runtime.php

│   ├── ThinkPHP

│   │   ├── Common

│   │   │   ├── alias.php

│   │   │   ├── compat.php

│   │   │   ├── convention.php

│   │   │   ├── core.php

│   │   │   ├── debug.php

│   │   │   ├── defines.php

│   │   │   ├── extend.php

│   │   │   ├── functions.php

│   │   │   ├── paths.php

│   │   │   └── runtime.php

│   │   ├── Lang

│   │   │   └── zh-cn.php

│   │   ├── Lib

│   │   │   └── Think

│   │   │   ├── Core

│   │   │   │   ├── Action.class.php

│   │   │   │   ├── App.class.php

│   │   │   │   ├── Log.class.php

│   │   │   │   ├── Model

│   │   │   │   │   ├── AdvModel.class.php

│   │   │   │   │   ├── RelationModel.class.php

│   │   │   │   │   └── ViewModel.class.php

│   │   │   │   ├── Model.class.php

│   │   │   │   ├── Think.class.php

│   │   │   │   └── View.class.php

│   │   │   ├── Db

│   │   │   │   ├── Db.class.php

│   │   │   │   └── Driver

│   │   │   │   ├── DbMysql.class.php

│   │   │   │   └── DbMysqli.class.php

│   │   │   ├── Exception

│   │   │   │   └── ThinkException.class.php

│   │   │   ├── Template

│   │   │   │   ├── TagLib

│   │   │   │   │   ├── TagLibCx.class.php

│   │   │   │   │   └── TagLibHtml.class.php

│   │   │   │   ├── TagLib.class.php

│   │   │   │   └── ThinkTemplate.class.php

│   │   │   └── Util

│   │   │   ├── Behavior.class.php

│   │   │   ├── Cache

│   │   │   │   └── CacheFile.class.php

│   │   │   ├── Cache.class.php

│   │   │   ├── Cookie.class.php

│   │   │   ├── Debug.class.php

│   │   │   ├── Dispatcher.class.php

│   │   │   ├── HtmlCache.class.php

│   │   │   ├── Session.class.php

│   │   │   ├── Template

│   │   │   │   ├── TemplateSmarty.class.php

│   │   │   │   └── TemplateThink.class.php

│   │   │   └── Widget.class.php

│   │   ├── LICENSE.txt

│   │   ├── Mode

│   │   │   ├── Cli

│   │   │   │   ├── Action.class.php

│   │   │   │   ├── alias.php

│   │   │   │   └── App.class.php

│   │   │   ├── cli.php

│   │   │   ├── Lite

│   │   │   │   ├── Action.class.php

│   │   │   │   ├── alias.php

│   │   │   │   ├── App.class.php

│   │   │   │   ├── Db.class.php

│   │   │   │   ├── Dispatcher.class.php

│   │   │   │   ├── Model.class.php

│   │   │   │   ├── ThinkTemplateCompiler.class.php

│   │   │   │   └── ThinkTemplateLite.class.php

│   │   │   ├── lite.php

│   │   │   ├── Thin

│   │   │   │   ├── Action.class.php

│   │   │   │   ├── alias.php

│   │   │   │   ├── App.class.php

│   │   │   │   ├── Db.class.php

│   │   │   │   └── Model.class.php

│   │   │   └── thin.php

│   │   ├── ThinkPHP.php

│   │   └── Tpl

│   │   ├── Autoindex

│   │   │   ├── hello.html

│   │   │   └── pointer.php

│   │   ├── AutoIndex.tpl.php

│   │   ├── BuildModeIndex.tpl.php

│   │   ├── DefaultIndex.tpl.php

│   │   ├── PageTrace.tpl.php

│   │   ├── ThinkCheckIndex.tpl.php

│   │   └── ThinkException.tpl.php

│   └── Tpl

│   └── default

│   ├── Employ

│   │   ├── employedit.html

│   │   ├── employ.html

│   │   ├── employinfo.html

│   │   ├── employshow.html

│   │   └── search.html

│   ├── Index

│   │   ├── index_body.html

│   │   ├── index.html

│   │   ├── index_main.html

│   │   ├── index_menu.html

│   │   └── index_top.html

│   ├── Online

│   │   └── online.html

│   ├── Position

│   │   └── position.html

│   ├── Public

│   │   ├── css_body.css

│   │   ├── css_menu.css

│   │   ├── css_top.css

│   │   ├── error.html

│   │   ├── images

│   │   │   ├── admin_tlogo.jpg

│   │   │   ├── body_title_bg.gif

│   │   │   ├── body_title_left.gif

│   │   │   ├── body_title_right.gif

│   │   │   ├── booknopic.gif

│   │   │   ├── class_sclose.gif

│   │   │   ├── class_sopen.gif

│   │   │   ├── class_ssr.gif

│   │   │   ├── close.gif

│   │   │   ├── ddlogo.gif

│   │   │   ├── frame-l.gif

│   │   │   ├── frame_on.gif

│   │   │   ├── frame-r.gif

│   │   │   ├── ico_1.gif

│   │   │   ├── ico_2.gif

│   │   │   ├── ico_3.gif

│   │   │   ├── inputbut_bg.gif

│   │   │   ├── left_bg_top.gif

│   │   │   ├── login_input_bg.gif

│   │   │   ├── login_input_hr.gif

│   │   │   ├── login_submit.gif

│   │   │   ├── mb_bg.gif

│   │   │   ├── menu_title_bg.jpg

│   │   │   ├── mico_l.gif

│   │   │   ├── Mypic_top12.gif

│   │   │   ├── rcbox_title.gif

│   │   │   ├── top_bg_hr.jpg

│   │   │   ├── top_nav_bg.jpg

│   │   │   ├── top_nav_left.jpg

│   │   │   ├── top_nav_on.gif

│   │   │   ├── top_nav_right.jpg

│   │   │   ├── top_nav_sr.gif

│   │   │   └── top_sitelink_bg.gif

│   │   ├── jquery.js

│   │   └── success.html

│   ├── Section

│   │   └── section.html

│   └── User

│   ├── useradd.html

│   ├── useredit.html

│   └── usershow.html

└── human--data

├── db.opt

├── think_employee.frm

├── think_employee.MYD

├── think_employee.MYI

├── think_online.frm

├── think_online.MYD

├── think_online.MYI

├── think_position.frm

├── think_position.MYD

├── think_position.MYI

├── think_section.frm

├── think_section.MYD

├── think_section.MYI

├── think_sysconfig.frm

├── think_sysconfig.MYD

├── think_sysconfig.MYI

├── think_user.frm

├── think_user.MYD

└── think_user.MYI

47 directories, 205 files

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值