首页 Java 1016基于SSH/Java的学生请假管理系统的设计与实现
1016基于SSH/Java的学生请假管理系统的设计与实现
作品编号:1019
关注人气:1807
文件包括:设计源码+数据库
设计大小:31.45 M
开发语言:Java
开发数据库:MySQL
开发环境:Spring Tool Suite+Tomcat8+JDK1.8
原价:900元
现价:90元
下载说明

本作品里面包括调试教程和开发工具和软件,可自行下载根据教程进行调试!

如需技术协助调试,本站收取50元作品调试费!点此申请调试

如果上面没有找到适合您需求的作品,您可联系我们为您定做,定做的作品完全按照您的功能需求来做,并且后期三包,包调试,包讲解,包修改直到通过为止。

  • 作品介绍
  • 项目目录

1.实现请假功能

2.实现审批流程管理

3.实现数据备份功能【数据库,或者打印出来备份】

4.实现课程考勤功能【这部分主要针对的用户是教师】

5.权限管理功能【不同的用户有不同的功能权限、数据权限】

6.实现出勤统计功能【按时间按班级按学院等统计出勤情况,做绩效考核】

总的来说,该题目是对高校学生考勤的请假功能为起点,由此引出一系列的流程,具有不同权限的用户在流程规则的约束中执行操作,从而产生学生考勤相关的数据,并通过系统对这些数据进行管理和研究。


1016基于SSH的学生请假管理系统的设计与实现1016基于SSH的学生请假管理系统的设计与实现1016基于SSH的学生请假管理系统的设计与实现1016基于SSH的学生请假管理系统的设计与实现
卷 软件 的文件夹 PATH 列表
卷序列号为 0008-B552
D:\TEST\源码
│  leave.sql
│  
└─leaveManager
    │  .classpath
    │  .project
    │  
    ├─.settings
    │      .jsdtscope
    │      org.eclipse.jdt.core.prefs
    │      org.eclipse.wst.common.component
    │      org.eclipse.wst.common.project.facet.core.xml
    │      org.eclipse.wst.jsdt.ui.superType.container
    │      org.eclipse.wst.jsdt.ui.superType.name
    │      
    ├─build
    │  └─classes
    │      │  applicationContext.xml
    │      │  jdbc.properties
    │      │  log4j.properties
    │      │  struts.xml
    │      │  
    │      └─com
    │          └─xznu
    │              └─edu
    │                  └─leave
    │                      ├─action
    │                      │      ClassRoomAction.class
    │                      │      CommentAction.class
    │                      │      LoginAction.class
    │                      │      ManageAction.class
    │                      │      NoteInfoAction.class
    │                      │      NoticeInfoAction.class
    │                      │      StudentAction.class
    │                      │      
    │                      ├─base
    │                      │  ├─dao
    │                      │  │  │  BaseDao.class
    │                      │  │  │  
    │                      │  │  └─impl
    │                      │  │          BaseDaoImpl.class
    │                      │  │          
    │                      │  └─service
    │                      │      └─impl
    │                      ├─dao
    │                      │  │  ClassRoomDao.class
    │                      │  │  CommentDao.class
    │                      │  │  ManageDao.class
    │                      │  │  NoteInfoDao.class
    │                      │  │  NoticeInfoDao.class
    │                      │  │  StudentDao.class
    │                      │  │  
    │                      │  └─impl
    │                      │          ClassRoomDaoImpl.class
    │                      │          CommentDaoImpl.class
    │                      │          ManageDaoImpl.class
    │                      │          NoteInfoDaoImpl.class
    │                      │          NoticeInfoDaoImpl.class
    │                      │          StudentDaoImpl.class
    │                      │          
    │                      ├─filter
    │                      │      MyStrutsFilter.class
    │                      │      SystemContextFilter.class
    │                      │      
    │                      ├─model
    │                      │      ClassRoom.class
    │                      │      Comment.class
    │                      │      Manage.class
    │                      │      NoteInfo.class
    │                      │      NoticeInfo.class
    │                      │      Student.class
    │                      │      
    │                      ├─service
    │                      │  │  BaseService.class
    │                      │  │  ClassRoomService.class
    │                      │  │  CommentService.class
    │                      │  │  ManageService.class
    │                      │  │  NoteInfoService.class
    │                      │  │  NoticeInfoService.class
    │                      │  │  StudentService.class
    │                      │  │  
    │                      │  └─impl
    │                      │          BaseServiceImpl.class
    │                      │          ClassRoomServiceImpl.class
    │                      │          CommentServiceImpl.class
    │                      │          ManageServiceImpl.class
    │                      │          NoteInfoServiceImpl.class
    │                      │          NoticeInfoServiceImpl.class
    │                      │          StudentServiceImpl.class
    │                      │          
    │                      └─utils
    │                              DateJsonValueProcessor.class
    │                              DateUtils.class
    │                              JsonUtil.class
    │                              Pager.class
    │                              SystemContext.class
    │                              TimeSetUtil.class
    │                              TimestampMorpher.class
    │                              UUIDUtils.class
    │                              
    ├─config
    │      applicationContext.xml
    │      jdbc.properties
    │      log4j.properties
    │      struts.xml
    │      
    ├─src
    │  └─com
    │      └─xznu
    │          └─edu
    │              └─leave
    │                  ├─action
    │                  │      ClassRoomAction.java
    │                  │      CommentAction.java
    │                  │      LoginAction.java
    │                  │      ManageAction.java
    │                  │      NoteInfoAction.java
    │                  │      NoticeInfoAction.java
    │                  │      StudentAction.java
    │                  │      
    │                  ├─base
    │                  │  ├─dao
    │                  │  │  │  BaseDao.java
    │                  │  │  │  
    │                  │  │  └─impl
    │                  │  │          BaseDaoImpl.java
    │                  │  │          
    │                  │  └─service
    │                  │      └─impl
    │                  ├─dao
    │                  │  │  ClassRoomDao.java
    │                  │  │  CommentDao.java
    │                  │  │  ManageDao.java
    │                  │  │  NoteInfoDao.java
    │                  │  │  NoticeInfoDao.java
    │                  │  │  StudentDao.java
    │                  │  │  
    │                  │  └─impl
    │                  │          ClassRoomDaoImpl.java
    │                  │          CommentDaoImpl.java
    │                  │          ManageDaoImpl.java
    │                  │          NoteInfoDaoImpl.java
    │                  │          NoticeInfoDaoImpl.java
    │                  │          StudentDaoImpl.java
    │                  │          
    │                  ├─filter
    │                  │      MyStrutsFilter.java
    │                  │      SystemContextFilter.java
    │                  │      
    │                  ├─model
    │                  │      ClassRoom.java
    │                  │      Comment.java
    │                  │      Manage.java
    │                  │      NoteInfo.java
    │                  │      NoticeInfo.java
    │                  │      Student.java
    │                  │      
    │                  ├─service
    │                  │  │  BaseService.java
    │                  │  │  ClassRoomService.java
    │                  │  │  CommentService.java
    │                  │  │  ManageService.java
    │                  │  │  NoteInfoService.java
    │                  │  │  NoticeInfoService.java
    │                  │  │  StudentService.java
    │                  │  │  
    │                  │  └─impl
    │                  │          BaseServiceImpl.java
    │                  │          ClassRoomServiceImpl.java
    │                  │          CommentServiceImpl.java
    │                  │          ManageServiceImpl.java
    │                  │          NoteInfoServiceImpl.java
    │                  │          NoticeInfoServiceImpl.java
    │                  │          StudentServiceImpl.java
    │                  │          
    │                  └─utils
    │                          DateUtils.java
    │                          JsonUtil.java
    │                          Pager.java
    │                          SystemContext.java
    │                          TimeSetUtil.java
    │                          UUIDUtils.java
    │                          
    └─WebContent
        ├─common
        │      taglibs.jsp
        │      
        ├─META-INF
        │      MANIFEST.MF
        │      
        ├─resource
        │  ├─css
        │  │  │  admin_login.css
        │  │  │  common.css
        │  │  │  login.css
        │  │  │  lyz.calendar.css
        │  │  │  main.css
        │  │  │  main2.css
        │  │  │  style.css
        │  │  │  
        │  │  └─bootstrap-3.3.5-dist
        │  │      ├─css
        │  │      │      bootstrap-theme.css
        │  │      │      bootstrap-theme.css.map
        │  │      │      bootstrap-theme.min.css
        │  │      │      bootstrap.css
        │  │      │      bootstrap.css.map
        │  │      │      bootstrap.min.css
        │  │      │      
        │  │      ├─fonts
        │  │      │      glyphicons-halflings-regular.eot
        │  │      │      glyphicons-halflings-regular.svg
        │  │      │      glyphicons-halflings-regular.ttf
        │  │      │      glyphicons-halflings-regular.woff
        │  │      │      glyphicons-halflings-regular.woff2
        │  │      │      
        │  │      └─js
        │  │          │  bootstrap.js
        │  │          │  bootstrap.min.js
        │  │          │  npm.js
        │  │          │  
        │  │          └─ueditor
        │  │              │  ueditor.all.min.js
        │  │              │  ueditor.config.js
        │  │              │  ueditor.parse.min.js
        │  │              │  
        │  │              ├─dialogs
        │  │              │  │  internal.js
        │  │              │  │  
        │  │              │  ├─anchor
        │  │              │  │      anchor.html
        │  │              │  │      
        │  │              │  ├─attachment
        │  │              │  │  │  attachment.css
        │  │              │  │  │  attachment.html
        │  │              │  │  │  attachment.js
        │  │              │  │  │  
        │  │              │  │  ├─fileTypeImages
        │  │              │  │  │      icon_chm.gif
        │  │              │  │  │      icon_default.png
        │  │              │  │  │      icon_doc.gif
        │  │              │  │  │      icon_exe.gif
        │  │              │  │  │      icon_jpg.gif
        │  │              │  │  │      icon_mp3.gif
        │  │              │  │  │      icon_mv.gif
        │  │              │  │  │      icon_pdf.gif
        │  │              │  │  │      icon_ppt.gif
        │  │              │  │  │      icon_psd.gif
        │  │              │  │  │      icon_rar.gif
        │  │              │  │  │      icon_txt.gif
        │  │              │  │  │      icon_xls.gif
        │  │              │  │  │      
        │  │              │  │  └─images
        │  │              │  │          alignicon.gif
        │  │              │  │          alignicon.png
        │  │              │  │          bg.png
        │  │              │  │          file-icons.gif
        │  │              │  │          file-icons.png
        │  │              │  │          icons.gif
        │  │              │  │          icons.png
        │  │              │  │          image.png
        │  │              │  │          progress.png
        │  │              │  │          success.gif
        │  │              │  │          success.png
        │  │              │  │          
        │  │              │  ├─background
        │  │              │  │  │  background.css
        │  │              │  │  │  background.html
        │  │              │  │  │  background.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          bg.png
        │  │              │  │          success.png
        │  │              │  │          
        │  │              │  ├─charts
        │  │              │  │  │  chart.config.js
        │  │              │  │  │  charts.css
        │  │              │  │  │  charts.html
        │  │              │  │  │  charts.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          charts0.png
        │  │              │  │          charts1.png
        │  │              │  │          charts2.png
        │  │              │  │          charts3.png
        │  │              │  │          charts4.png
        │  │              │  │          charts5.png
        │  │              │  │          
        │  │              │  ├─emotion
        │  │              │  │  │  emotion.css
        │  │              │  │  │  emotion.html
        │  │              │  │  │  emotion.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          0.gif
        │  │              │  │          bface.gif
        │  │              │  │          cface.gif
        │  │              │  │          fface.gif
        │  │              │  │          jxface2.gif
        │  │              │  │          neweditor-tab-bg.png
        │  │              │  │          tface.gif
        │  │              │  │          wface.gif
        │  │              │  │          yface.gif
        │  │              │  │          
        │  │              │  ├─gmap
        │  │              │  │      gmap.html
        │  │              │  │      
        │  │              │  ├─help
        │  │              │  │      help.css
        │  │              │  │      help.html
        │  │              │  │      help.js
        │  │              │  │      
        │  │              │  ├─image
        │  │              │  │  │  image.css
        │  │              │  │  │  image.html
        │  │              │  │  │  image.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          alignicon.jpg
        │  │              │  │          bg.png
        │  │              │  │          icons.gif
        │  │              │  │          icons.png
        │  │              │  │          image.png
        │  │              │  │          progress.png
        │  │              │  │          success.gif
        │  │              │  │          success.png
        │  │              │  │          
        │  │              │  ├─insertframe
        │  │              │  │      insertframe.html
        │  │              │  │      
        │  │              │  ├─link
        │  │              │  │      link.html
        │  │              │  │      
        │  │              │  ├─map
        │  │              │  │      map.html
        │  │              │  │      show.html
        │  │              │  │      
        │  │              │  ├─music
        │  │              │  │      music.css
        │  │              │  │      music.html
        │  │              │  │      music.js
        │  │              │  │      
        │  │              │  ├─preview
        │  │              │  │      preview.html
        │  │              │  │      
        │  │              │  ├─scrawl
        │  │              │  │  │  scrawl.css
        │  │              │  │  │  scrawl.html
        │  │              │  │  │  scrawl.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          addimg.png
        │  │              │  │          brush.png
        │  │              │  │          delimg.png
        │  │              │  │          delimgH.png
        │  │              │  │          empty.png
        │  │              │  │          emptyH.png
        │  │              │  │          eraser.png
        │  │              │  │          redo.png
        │  │              │  │          redoH.png
        │  │              │  │          scale.png
        │  │              │  │          scaleH.png
        │  │              │  │          size.png
        │  │              │  │          undo.png
        │  │              │  │          undoH.png
        │  │              │  │          
        │  │              │  ├─searchreplace
        │  │              │  │      searchreplace.html
        │  │              │  │      searchreplace.js
        │  │              │  │      
        │  │              │  ├─snapscreen
        │  │              │  │      snapscreen.html
        │  │              │  │      
        │  │              │  ├─spechars
        │  │              │  │      spechars.html
        │  │              │  │      spechars.js
        │  │              │  │      
        │  │              │  ├─table
        │  │              │  │      dragicon.png
        │  │              │  │      edittable.css
        │  │              │  │      edittable.html
        │  │              │  │      edittable.js
        │  │              │  │      edittd.html
        │  │              │  │      edittip.html
        │  │              │  │      
        │  │              │  ├─template
        │  │              │  │  │  config.js
        │  │              │  │  │  template.css
        │  │              │  │  │  template.html
        │  │              │  │  │  template.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          bg.gif
        │  │              │  │          pre0.png
        │  │              │  │          pre1.png
        │  │              │  │          pre2.png
        │  │              │  │          pre3.png
        │  │              │  │          pre4.png
        │  │              │  │          
        │  │              │  ├─video
        │  │              │  │  │  video.css
        │  │              │  │  │  video.html
        │  │              │  │  │  video.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          bg.png
        │  │              │  │          center_focus.jpg
        │  │              │  │          file-icons.gif
        │  │              │  │          file-icons.png
        │  │              │  │          icons.gif
        │  │              │  │          icons.png
        │  │              │  │          image.png
        │  │              │  │          left_focus.jpg
        │  │              │  │          none_focus.jpg
        │  │              │  │          progress.png
        │  │              │  │          right_focus.jpg
        │  │              │  │          success.gif
        │  │              │  │          success.png
        │  │              │  │          
        │  │              │  ├─webapp
        │  │              │  │      webapp.html
        │  │              │  │      
        │  │              │  └─wordimage
        │  │              │          fClipboard_ueditor.swf
        │  │              │          imageUploader.swf
        │  │              │          tangram.js
        │  │              │          wordimage.html
        │  │              │          wordimage.js
        │  │              │          
        │  │              ├─jsp
        │  │              │      config.json
        │  │              │      controller.jsp
        │  │              │      
        │  │              ├─lang
        │  │              │  ├─en
        │  │              │  │  │  en.js
        │  │              │  │  │  
        │  │              │  │  └─images
        │  │              │  │          addimage.png
        │  │              │  │          alldeletebtnhoverskin.png
        │  │              │  │          alldeletebtnupskin.png
        │  │              │  │          background.png
        │  │              │  │          button.png
        │  │              │  │          copy.png
        │  │              │  │          deletedisable.png
        │  │              │  │          deleteenable.png
        │  │              │  │          listbackground.png
        │  │              │  │          localimage.png
        │  │              │  │          music.png
        │  │              │  │          rotateleftdisable.png
        │  │              │  │          rotateleftenable.png
        │  │              │  │          rotaterightdisable.png
        │  │              │  │          rotaterightenable.png
        │  │              │  │          upload.png
        │  │              │  │          
        │  │              │  └─zh-cn
        │  │              │      │  zh-cn.js
        │  │              │      │  
        │  │              │      └─images
        │  │              │              copy.png
        │  │              │              localimage.png
        │  │              │              music.png
        │  │              │              upload.png
        │  │              │              
        │  │              ├─themes
        │  │              │  │  iframe.css
        │  │              │  │  
        │  │              │  └─default
        │  │              │      │  dialogbase.css
        │  │              │      │  
        │  │              │      ├─css
        │  │              │      │      ueditor.css
        │  │              │      │      ueditor.min.css
        │  │              │      │      
        │  │              │      └─images
        │  │              │              anchor.gif
        │  │              │              arrow.png
        │  │              │              arrow_down.png
        │  │              │              arrow_up.png
        │  │              │              button-bg.gif
        │  │              │              cancelbutton.gif
        │  │              │              charts.png
        │  │              │              cursor_h.gif
        │  │              │              cursor_h.png
        │  │              │              cursor_v.gif
        │  │              │              cursor_v.png
        │  │              │              dialog-title-bg.png
        │  │              │              filescan.png
        │  │              │              highlighted.gif
        │  │              │              icons-all.gif
        │  │              │              icons.gif
        │  │              │              icons.png
        │  │              │              loaderror.png
        │  │              │              loading.gif
        │  │              │              lock.gif
        │  │              │              neweditor-tab-bg.png
        │  │              │              pagebreak.gif
        │  │              │              scale.png
        │  │              │              sortable.png
        │  │              │              spacer.gif
        │  │              │              sparator_v.png
        │  │              │              table-cell-align.png
        │  │              │              tangram-colorpicker.png
        │  │              │              toolbar_bg.png
        │  │              │              unhighlighted.gif
        │  │              │              upload.png
        │  │              │              videologo.gif
        │  │              │              word.gif
        │  │              │              wordpaste.png
        │  │              │              
        │  │              └─third-party
        │  │                  │  jquery-1.10.2.js
        │  │                  │  jquery-1.10.2.min.js
        │  │                  │  jquery-1.10.2.min.map
        │  │                  │  
        │  │                  ├─codemirror
        │  │                  │      codemirror.css
        │  │                  │      codemirror.js
        │  │                  │      
        │  │                  ├─highcharts
        │  │                  │  │  highcharts-more.js
        │  │                  │  │  highcharts-more.src.js
        │  │                  │  │  highcharts.js
        │  │                  │  │  highcharts.src.js
        │  │                  │  │  
        │  │                  │  ├─adapters
        │  │                  │  │      mootools-adapter.js
        │  │                  │  │      mootools-adapter.src.js
        │  │                  │  │      prototype-adapter.js
        │  │                  │  │      prototype-adapter.src.js
        │  │                  │  │      standalone-framework.js
        │  │                  │  │      standalone-framework.src.js
        │  │                  │  │      
        │  │                  │  ├─modules
        │  │                  │  │      annotations.js
        │  │                  │  │      annotations.src.js
        │  │                  │  │      canvas-tools.js
        │  │                  │  │      canvas-tools.src.js
        │  │                  │  │      data.js
        │  │                  │  │      data.src.js
        │  │                  │  │      drilldown.js
        │  │                  │  │      drilldown.src.js
        │  │                  │  │      exporting.js
        │  │                  │  │      exporting.src.js
        │  │                  │  │      funnel.js
        │  │                  │  │      funnel.src.js
        │  │                  │  │      heatmap.js
        │  │                  │  │      heatmap.src.js
        │  │                  │  │      map.js
        │  │                  │  │      map.src.js
        │  │                  │  │      no-data-to-display.js
        │  │                  │  │      no-data-to-display.src.js
        │  │                  │  │      
        │  │                  │  └─themes
        │  │                  │          dark-blue.js
        │  │                  │          dark-green.js
        │  │                  │          gray.js
        │  │                  │          grid.js
        │  │                  │          skies.js
        │  │                  │          
        │  │                  ├─snapscreen
        │  │                  │      UEditorSnapscreen.exe
        │  │                  │      
        │  │                  ├─SyntaxHighlighter
        │  │                  │      shCore.js
        │  │                  │      shCoreDefault.css
        │  │                  │      
        │  │                  ├─video-js
        │  │                  │  │  video-js.css
        │  │                  │  │  video-js.min.css
        │  │                  │  │  video-js.swf
        │  │                  │  │  video.dev.js
        │  │                  │  │  video.js
        │  │                  │  │  
        │  │                  │  └─font
        │  │                  │          vjs.eot
        │  │                  │          vjs.svg
        │  │                  │          vjs.ttf
        │  │                  │          vjs.woff
        │  │                  │          
        │  │                  ├─webuploader
        │  │                  │      Uploader.swf
        │  │                  │      webuploader.css
        │  │                  │      webuploader.custom.js
        │  │                  │      webuploader.custom.min.js
        │  │                  │      webuploader.flashonly.js
        │  │                  │      webuploader.flashonly.min.js
        │  │                  │      webuploader.html5only.js
        │  │                  │      webuploader.html5only.min.js
        │  │                  │      webuploader.js
        │  │                  │      webuploader.min.js
        │  │                  │      webuploader.withoutimage.js
        │  │                  │      webuploader.withoutimage.min.js
        │  │                  │      
        │  │                  └─zeroclipboard
        │  │                          ZeroClipboard.js
        │  │                          ZeroClipboard.min.js
        │  │                          ZeroClipboard.swf
        │  │                          
        │  ├─fonts
        │  │      icomoon.dev.svg
        │  │      icomoon.eot
        │  │      icomoon.svg
        │  │      icomoon.ttf
        │  │      icomoon.woff
        │  │      
        │  ├─images
        │  │  │  aiwrap.png
        │  │  │  banner.jpg
        │  │  │  date_bg.png
        │  │  │  email.png
        │  │  │  head-img.png
        │  │  │  lock.png
        │  │  │  logo.png
        │  │  │  onCorrect.gif
        │  │  │  onError.gif
        │  │  │  onFocus.gif
        │  │  │  onShow.gif
        │  │  │  sprite.png
        │  │  │  tab-thbg.png
        │  │  │  tick.png
        │  │  │  web_login_bg.jpg
        │  │  │  
        │  │  └─login
        │  │          admin-login-btnbg.gif
        │  │          
        │  └─js
        │      │  jquery-1.8.3.min.js
        │      │  lyz.calendar.min.js
        │      │  main2.js
        │      │  
        │      ├─libs
        │      │      modernizr.min.js
        │      │      
        │      └─ueditor
        │          │  ueditor.all.min.js
        │          │  ueditor.config.js
        │          │  ueditor.parse.min.js
        │          │  
        │          ├─dialogs
        │          │  │  internal.js
        │          │  │  
        │          │  ├─anchor
        │          │  │      anchor.html
        │          │  │      
        │          │  ├─attachment
        │          │  │  │  attachment.css
        │          │  │  │  attachment.html
        │          │  │  │  attachment.js
        │          │  │  │  
        │          │  │  ├─fileTypeImages
        │          │  │  │      icon_chm.gif
        │          │  │  │      icon_default.png
        │          │  │  │      icon_doc.gif
        │          │  │  │      icon_exe.gif
        │          │  │  │      icon_jpg.gif
        │          │  │  │      icon_mp3.gif
        │          │  │  │      icon_mv.gif
        │          │  │  │      icon_pdf.gif
        │          │  │  │      icon_ppt.gif
        │          │  │  │      icon_psd.gif
        │          │  │  │      icon_rar.gif
        │          │  │  │      icon_txt.gif
        │          │  │  │      icon_xls.gif
        │          │  │  │      
        │          │  │  └─images
        │          │  │          alignicon.gif
        │          │  │          alignicon.png
        │          │  │          bg.png
        │          │  │          file-icons.gif
        │          │  │          file-icons.png
        │          │  │          icons.gif
        │          │  │          icons.png
        │          │  │          image.png
        │          │  │          progress.png
        │          │  │          success.gif
        │          │  │          success.png
        │          │  │          
        │          │  ├─background
        │          │  │  │  background.css
        │          │  │  │  background.html
        │          │  │  │  background.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          bg.png
        │          │  │          success.png
        │          │  │          
        │          │  ├─charts
        │          │  │  │  chart.config.js
        │          │  │  │  charts.css
        │          │  │  │  charts.html
        │          │  │  │  charts.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          charts0.png
        │          │  │          charts1.png
        │          │  │          charts2.png
        │          │  │          charts3.png
        │          │  │          charts4.png
        │          │  │          charts5.png
        │          │  │          
        │          │  ├─emotion
        │          │  │  │  emotion.css
        │          │  │  │  emotion.html
        │          │  │  │  emotion.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          0.gif
        │          │  │          bface.gif
        │          │  │          cface.gif
        │          │  │          fface.gif
        │          │  │          jxface2.gif
        │          │  │          neweditor-tab-bg.png
        │          │  │          tface.gif
        │          │  │          wface.gif
        │          │  │          yface.gif
        │          │  │          
        │          │  ├─gmap
        │          │  │      gmap.html
        │          │  │      
        │          │  ├─help
        │          │  │      help.css
        │          │  │      help.html
        │          │  │      help.js
        │          │  │      
        │          │  ├─image
        │          │  │  │  image.css
        │          │  │  │  image.html
        │          │  │  │  image.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          alignicon.jpg
        │          │  │          bg.png
        │          │  │          icons.gif
        │          │  │          icons.png
        │          │  │          image.png
        │          │  │          progress.png
        │          │  │          success.gif
        │          │  │          success.png
        │          │  │          
        │          │  ├─insertframe
        │          │  │      insertframe.html
        │          │  │      
        │          │  ├─link
        │          │  │      link.html
        │          │  │      
        │          │  ├─map
        │          │  │      map.html
        │          │  │      show.html
        │          │  │      
        │          │  ├─music
        │          │  │      music.css
        │          │  │      music.html
        │          │  │      music.js
        │          │  │      
        │          │  ├─preview
        │          │  │      preview.html
        │          │  │      
        │          │  ├─scrawl
        │          │  │  │  scrawl.css
        │          │  │  │  scrawl.html
        │          │  │  │  scrawl.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          addimg.png
        │          │  │          brush.png
        │          │  │          delimg.png
        │          │  │          delimgH.png
        │          │  │          empty.png
        │          │  │          emptyH.png
        │          │  │          eraser.png
        │          │  │          redo.png
        │          │  │          redoH.png
        │          │  │          scale.png
        │          │  │          scaleH.png
        │          │  │          size.png
        │          │  │          undo.png
        │          │  │          undoH.png
        │          │  │          
        │          │  ├─searchreplace
        │          │  │      searchreplace.html
        │          │  │      searchreplace.js
        │          │  │      
        │          │  ├─snapscreen
        │          │  │      snapscreen.html
        │          │  │      
        │          │  ├─spechars
        │          │  │      spechars.html
        │          │  │      spechars.js
        │          │  │      
        │          │  ├─table
        │          │  │      dragicon.png
        │          │  │      edittable.css
        │          │  │      edittable.html
        │          │  │      edittable.js
        │          │  │      edittd.html
        │          │  │      edittip.html
        │          │  │      
        │          │  ├─template
        │          │  │  │  config.js
        │          │  │  │  template.css
        │          │  │  │  template.html
        │          │  │  │  template.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          bg.gif
        │          │  │          pre0.png
        │          │  │          pre1.png
        │          │  │          pre2.png
        │          │  │          pre3.png
        │          │  │          pre4.png
        │          │  │          
        │          │  ├─video
        │          │  │  │  video.css
        │          │  │  │  video.html
        │          │  │  │  video.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          bg.png
        │          │  │          center_focus.jpg
        │          │  │          file-icons.gif
        │          │  │          file-icons.png
        │          │  │          icons.gif
        │          │  │          icons.png
        │          │  │          image.png
        │          │  │          left_focus.jpg
        │          │  │          none_focus.jpg
        │          │  │          progress.png
        │          │  │          right_focus.jpg
        │          │  │          success.gif
        │          │  │          success.png
        │          │  │          
        │          │  ├─webapp
        │          │  │      webapp.html
        │          │  │      
        │          │  └─wordimage
        │          │          fClipboard_ueditor.swf
        │          │          imageUploader.swf
        │          │          tangram.js
        │          │          wordimage.html
        │          │          wordimage.js
        │          │          
        │          ├─jsp
        │          │      config.json
        │          │      controller.jsp
        │          │      
        │          ├─lang
        │          │  ├─en
        │          │  │  │  en.js
        │          │  │  │  
        │          │  │  └─images
        │          │  │          addimage.png
        │          │  │          alldeletebtnhoverskin.png
        │          │  │          alldeletebtnupskin.png
        │          │  │          background.png
        │          │  │          button.png
        │          │  │          copy.png
        │          │  │          deletedisable.png
        │          │  │          deleteenable.png
        │          │  │          listbackground.png
        │          │  │          localimage.png
        │          │  │          music.png
        │          │  │          rotateleftdisable.png
        │          │  │          rotateleftenable.png
        │          │  │          rotaterightdisable.png
        │          │  │          rotaterightenable.png
        │          │  │          upload.png
        │          │  │          
        │          │  └─zh-cn
        │          │      │  zh-cn.js
        │          │      │  
        │          │      └─images
        │          │              copy.png
        │          │              localimage.png
        │          │              music.png
        │          │              upload.png
        │          │              
        │          ├─themes
        │          │  │  iframe.css
        │          │  │  
        │          │  └─default
        │          │      │  dialogbase.css
        │          │      │  
        │          │      ├─css
        │          │      │      ueditor.css
        │          │      │      ueditor.min.css
        │          │      │      
        │          │      └─images
        │          │              anchor.gif
        │          │              arrow.png
        │          │              arrow_down.png
        │          │              arrow_up.png
        │          │              button-bg.gif
        │          │              cancelbutton.gif
        │          │              charts.png
        │          │              cursor_h.gif
        │          │              cursor_h.png
        │          │              cursor_v.gif
        │          │              cursor_v.png
        │          │              dialog-title-bg.png
        │          │              filescan.png
        │          │              highlighted.gif
        │          │              icons-all.gif
        │          │              icons.gif
        │          │              icons.png
        │          │              loaderror.png
        │          │              loading.gif
        │          │              lock.gif
        │          │              neweditor-tab-bg.png
        │          │              pagebreak.gif
        │          │              scale.png
        │          │              sortable.png
        │          │              spacer.gif
        │          │              sparator_v.png
        │          │              table-cell-align.png
        │          │              tangram-colorpicker.png
        │          │              toolbar_bg.png
        │          │              unhighlighted.gif
        │          │              upload.png
        │          │              videologo.gif
        │          │              word.gif
        │          │              wordpaste.png
        │          │              
        │          └─third-party
        │              │  jquery-1.10.2.js
        │              │  jquery-1.10.2.min.js
        │              │  jquery-1.10.2.min.map
        │              │  
        │              ├─codemirror
        │              │      codemirror.css
        │              │      codemirror.js
        │              │      
        │              ├─highcharts
        │              │  │  highcharts-more.js
        │              │  │  highcharts-more.src.js
        │              │  │  highcharts.js
        │              │  │  highcharts.src.js
        │              │  │  
        │              │  ├─adapters
        │              │  │      mootools-adapter.js
        │              │  │      mootools-adapter.src.js
        │              │  │      prototype-adapter.js
        │              │  │      prototype-adapter.src.js
        │              │  │      standalone-framework.js
        │              │  │      standalone-framework.src.js
        │              │  │      
        │              │  ├─modules
        │              │  │      annotations.js
        │              │  │      annotations.src.js
        │              │  │      canvas-tools.js
        │              │  │      canvas-tools.src.js
        │              │  │      data.js
        │              │  │      data.src.js
        │              │  │      drilldown.js
        │              │  │      drilldown.src.js
        │              │  │      exporting.js
        │              │  │      exporting.src.js
        │              │  │      funnel.js
        │              │  │      funnel.src.js
        │              │  │      heatmap.js
        │              │  │      heatmap.src.js
        │              │  │      map.js
        │              │  │      map.src.js
        │              │  │      no-data-to-display.js
        │              │  │      no-data-to-display.src.js
        │              │  │      
        │              │  └─themes
        │              │          dark-blue.js
        │              │          dark-green.js
        │              │          gray.js
        │              │          grid.js
        │              │          skies.js
        │              │          
        │              ├─snapscreen
        │              │      UEditorSnapscreen.exe
        │              │      
        │              ├─SyntaxHighlighter
        │              │      shCore.js
        │              │      shCoreDefault.css
        │              │      
        │              ├─video-js
        │              │  │  video-js.css
        │              │  │  video-js.min.css
        │              │  │  video-js.swf
        │              │  │  video.dev.js
        │              │  │  video.js
        │              │  │  
        │              │  └─font
        │              │          vjs.eot
        │              │          vjs.svg
        │              │          vjs.ttf
        │              │          vjs.woff
        │              │          
        │              ├─webuploader
        │              │      Uploader.swf
        │              │      webuploader.css
        │              │      webuploader.custom.js
        │              │      webuploader.custom.min.js
        │              │      webuploader.flashonly.js
        │              │      webuploader.flashonly.min.js
        │              │      webuploader.html5only.js
        │              │      webuploader.html5only.min.js
        │              │      webuploader.js
        │              │      webuploader.min.js
        │              │      webuploader.withoutimage.js
        │              │      webuploader.withoutimage.min.js
        │              │      
        │              └─zeroclipboard
        │                      ZeroClipboard.js
        │                      ZeroClipboard.min.js
        │                      ZeroClipboard.swf
        │                      
        ├─upload
        │      1.jpg
        │      19_222949_14.jpg
        │      
        └─WEB-INF
            │  web.xml
            │  
            ├─jsp
            │  ├─classRoom
            │  │      add.jsp
            │  │      classRoom.jsp
            │  │      update.jsp
            │  │      
            │  ├─comment
            │  │      comment.jsp
            │  │      
            │  ├─login
            │  │      index.html
            │  │      index.jsp
            │  │      login.jsp
            │  │      
            │  ├─manage
            │  │      add.jsp
            │  │      manage.jsp
            │  │      setTime.jsp
            │  │      update.jsp
            │  │      
            │  ├─note
            │  │      detail.jsp
            │  │      exAdd.jsp
            │  │      note.jsp
            │  │      notes.jsp
            │  │      studentList.jsp
            │  │      update.jsp
            │  │      
            │  ├─notice
            │  │      add.jsp
            │  │      notice.jsp
            │  │      notices.jsp
            │  │      update.jsp
            │  │      
            │  └─student
            │          add.jsp
            │          student.jsp
            │          update.jsp
            │          
            ├─lib
            │      antlr-2.7.7.jar
            │      asm-3.3.jar
            │      asm-commons-3.3.jar
            │      asm-tree-3.3.jar
            │      c3p0-0.9.1.2.jar
            │      com.springsource.net.sf.cglib-2.2.0.jar
            │      com.springsource.org.aopalliance-1.0.0.jar
            │      com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
            │      commons-collections-3.1.jar
            │      commons-dbcp.jar
            │      commons-fileupload-1.3.jar
            │      commons-io-2.0.1.jar
            │      commons-lang3-3.1.jar
            │      commons-logging-1.1.3.jar
            │      commons-pool.jar
            │      dom4j-1.6.1.jar
            │      ECharts-2.1.8.jar
            │      freemarker-2.3.19.jar
            │      gson-2.3.jar
            │      hibernate-commons-annotations-4.0.2.Final.jar
            │      hibernate-core-4.2.4.Final.jar
            │      hibernate-jpa-2.0-api-1.0.1.Final.jar
            │      javassist-3.15.0-GA.jar
            │      jboss-logging-3.1.0.GA.jar
            │      jboss-transaction-api_1.1_spec-1.0.1.Final.jar
            │      json-2.2.1.jar
            │      json-lib-2.3-jdk15.jar
            │      json-lib-2.4-jdk15.jar
            │      json-parser_fat.jar
            │      json.jar
            │      jsoup-1.8.1.jar
            │      jstl-1.2.jar
            │      log4j-1.2.17.jar
            │      mysql-connector-java-5.1.7-bin.jar
            │      ognl-3.0.6.jar
            │      ojdbc6.jar
            │      pager-taglib.jar
            │      servlet-api.jar
            │      spring-aop-4.0.0.RELEASE.jar
            │      spring-aspects-4.0.0.RELEASE.jar
            │      spring-beans-4.0.0.RELEASE.jar
            │      spring-context-4.0.0.RELEASE.jar
            │      spring-core-4.0.0.RELEASE.jar
            │      spring-expression-4.0.0.RELEASE.jar
            │      spring-jdbc-4.0.0.RELEASE.jar
            │      spring-orm-4.0.0.RELEASE.jar
            │      spring-tx-4.0.0.RELEASE.jar
            │      spring-web-4.0.0.RELEASE.jar
            │      spring-webmvc-4.0.0.RELEASE.jar
            │      standard-1.1.2.jar
            │      struts2-core-2.3.15.3.jar
            │      struts2-spring-plugin-2.3.15.3.jar
            │      ueditor-1.1.1.1.jar
            │      xwork-core-2.3.15.3.jar
            │      
            └─tlds
                    c.tld
                    fmt.tld
                    fn.tld
                    pager-taglib.tld
                    

标签:请假管理系统,学生考勤管理系统,课堂考勤管理系统

  • 专注毕业设计源码作品
  • 毕业设计源码论文全套
  • 每件作品均测试后上线
  • 提供所有教程和软件下载

Copyright © 2008-2024 jsjbysjw.com . All Rights Reserved. 备案号:苏ICP备2021056683号-4

  • 联系QQ:81677093
  • 微信:bysj1950