【实例简介】
可用于学校实训课大作业,有数据库有文档 可用于学校实训课大作业,有数据库有文档 可用于学校实训课大作业,有数据库有文档 可用于学校实训课大作业,有数据库有文档
【实例截图】
【核心代码】
某景点门票销售管理系统
└── 项目
├── 代码
│ └── sys-yc
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── zzh
│ │ │ └── ycgxy
│ │ │ ├── common
│ │ │ │ ├── CommonUtil.java
│ │ │ │ ├── Constants.java
│ │ │ │ └── JsonUtils.java
│ │ │ ├── controller
│ │ │ │ ├── BasicController.java
│ │ │ │ ├── EmployeeController.java
│ │ │ │ ├── IndexController.java
│ │ │ │ ├── LoginController.java
│ │ │ │ ├── ManagerErrorController.java
│ │ │ │ ├── SearchController.java
│ │ │ │ ├── TicketController.java
│ │ │ │ └── TicketTypeController.java
│ │ │ ├── dao
│ │ │ │ ├── EmployeeMapper.java
│ │ │ │ ├── EmployeeMapper.xml
│ │ │ │ ├── RecallMapper.java
│ │ │ │ ├── RecallMapper.xml
│ │ │ │ ├── SearchMapper.java
│ │ │ │ ├── SearchMapper.xml
│ │ │ │ ├── SellMapper.java
│ │ │ │ ├── SellMapper.xml
│ │ │ │ ├── TicketMapper.java
│ │ │ │ ├── TicketMapper.xml
│ │ │ │ ├── TickettypeMapper.java
│ │ │ │ └── TickettypeMapper.xml
│ │ │ ├── entity
│ │ │ │ ├── EmployeeExample.java
│ │ │ │ ├── Employee.java
│ │ │ │ ├── RecallExample.java
│ │ │ │ ├── RecallKey.java
│ │ │ │ ├── SellExample.java
│ │ │ │ ├── Sell.java
│ │ │ │ ├── SellKey.java
│ │ │ │ ├── TicketExample.java
│ │ │ │ ├── Ticket.java
│ │ │ │ ├── TicketKey.java
│ │ │ │ ├── TickettypeExample.java
│ │ │ │ └── Tickettype.java
│ │ │ ├── model
│ │ │ │ ├── DeleteObj.java
│ │ │ │ ├── PaginationResult.java
│ │ │ │ ├── SaleResult.java
│ │ │ │ ├── searchByDayResult.java
│ │ │ │ ├── searchByMonthResult.java
│ │ │ │ └── TicketAndType.java
│ │ │ ├── query
│ │ │ │ ├── EmployeeQO.java
│ │ │ │ └── ResultCodeQO.java
│ │ │ └── service
│ │ │ ├── EmployeeService.java
│ │ │ ├── LoginService.java
│ │ │ ├── SearchService.java
│ │ │ ├── TicketService.java
│ │ │ └── TicketTypeService.java
│ │ ├── resources
│ │ │ ├── mybatis
│ │ │ │ └── mybatis-config.xml
│ │ │ ├── properties
│ │ │ │ ├── db.properties
│ │ │ │ └── log4j.properties
│ │ │ ├── resource
│ │ │ │ └── resource.properties
│ │ │ └── spring
│ │ │ ├── applicationContext-dao.xml
│ │ │ ├── applicationContext-service.xml
│ │ │ ├── applicationContext-transaction.xml
│ │ │ └── springmvc.xml
│ │ └── webapp
│ │ ├── assets
│ │ │ ├── avatars
│ │ │ │ ├── avatar1.png
│ │ │ │ ├── avatar2.png
│ │ │ │ ├── avatar3.png
│ │ │ │ ├── avatar4.png
│ │ │ │ ├── avatar5.png
│ │ │ │ ├── avatar.png
│ │ │ │ ├── profile-pic.jpg
│ │ │ │ └── user.jpg
│ │ │ ├── Common.js
│ │ │ ├── css
│ │ │ │ ├── ace-ie.min.css
│ │ │ │ ├── ace.min.css
│ │ │ │ ├── ace-rtl.min.css
│ │ │ │ ├── ace-skins.min.css
│ │ │ │ ├── bootstrap-editable.css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap-timepicker.css
│ │ │ │ ├── chosen.css
│ │ │ │ ├── colorbox.css
│ │ │ │ ├── colorpicker.css
│ │ │ │ ├── datepicker.css
│ │ │ │ ├── daterangepicker.css
│ │ │ │ ├── default.css
│ │ │ │ ├── demo.css
│ │ │ │ ├── dropzone.css
│ │ │ │ ├── font-awesome-ie7.min.css
│ │ │ │ ├── font-awesome.min.css
│ │ │ │ ├── fullcalendar.css
│ │ │ │ ├── images
│ │ │ │ │ └── loading.gif
│ │ │ │ ├── jquery.gritter.css
│ │ │ │ ├── jquery-ui-1.10.3.custom.min.css
│ │ │ │ ├── jquery-ui-1.10.3.full.min.css
│ │ │ │ ├── loaders.css
│ │ │ │ ├── normalize.css
│ │ │ │ ├── select2.css
│ │ │ │ ├── styles.css
│ │ │ │ └── ui.jqgrid.css
│ │ │ ├── font
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ ├── images
│ │ │ │ └── gallery
│ │ │ │ ├── image-1.jpg
│ │ │ │ ├── image-2.jpg
│ │ │ │ ├── image-3.jpg
│ │ │ │ ├── image-4.jpg
│ │ │ │ ├── image-5.jpg
│ │ │ │ ├── image-6.jpg
│ │ │ │ ├── thumb-1.jpg
│ │ │ │ ├── thumb-2.jpg
│ │ │ │ ├── thumb-3.jpg
│ │ │ │ ├── thumb-4.jpg
│ │ │ │ ├── thumb-5.jpg
│ │ │ │ └── thumb-6.jpg
│ │ │ ├── img
│ │ │ │ └── Starry.jpg
│ │ │ ├── jquery.min.js
│ │ │ ├── js
│ │ │ │ ├── ace-elements.min.js
│ │ │ │ ├── ace-extra.min.js
│ │ │ │ ├── ace.min.js
│ │ │ │ ├── additional-methods.min.js
│ │ │ │ ├── bootbox.min.js
│ │ │ │ ├── bootstrap-colorpicker.min.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── bootstrap-tag.min.js
│ │ │ │ ├── bootstrap-wysiwyg.min.js
│ │ │ │ ├── chosen.jquery.min.js
│ │ │ │ ├── date-time
│ │ │ │ │ ├── bootstrap-datepicker.min.js
│ │ │ │ │ ├── bootstrap-timepicker.min.js
│ │ │ │ │ ├── daterangepicker.min.js
│ │ │ │ │ └── moment.min.js
│ │ │ │ ├── dropzone.min.js
│ │ │ │ ├── excanvas.min.js
│ │ │ │ ├── flot
│ │ │ │ │ ├── jquery.flot.min.js
│ │ │ │ │ ├── jquery.flot.pie.min.js
│ │ │ │ │ └── jquery.flot.resize.min.js
│ │ │ │ ├── fuelux
│ │ │ │ │ ├── data
│ │ │ │ │ │ └── fuelux.tree-sampledata.js
│ │ │ │ │ ├── fuelux.spinner.min.js
│ │ │ │ │ ├── fuelux.tree.min.js
│ │ │ │ │ └── fuelux.wizard.min.js
│ │ │ │ ├── fullcalendar.min.js
│ │ │ │ ├── html5shiv.js
│ │ │ │ ├── jqGrid
│ │ │ │ │ ├── i18n
│ │ │ │ │ │ └── grid.locale-en.js
│ │ │ │ │ └── jquery.jqGrid.min.js
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ ├── jquery-2.0.3.min.js
│ │ │ │ ├── jquery-2.1.1.min.js
│ │ │ │ ├── jquery.autosize.min.js
│ │ │ │ ├── jquery.colorbox-min.js
│ │ │ │ ├── jquery.dataTables.bootstrap.js
│ │ │ │ ├── jquery.dataTables.min.js
│ │ │ │ ├── jquery.easy-pie-chart.min.js
│ │ │ │ ├── jquery.gritter.min.js
│ │ │ │ ├── jquery.hotkeys.min.js
│ │ │ │ ├── jquery.inputlimiter.1.3.1.min.js
│ │ │ │ ├── jquery.knob.min.js
│ │ │ │ ├── jquery.maskedinput.min.js
│ │ │ │ ├── jquery.mobile.custom.min.js
│ │ │ │ ├── jquery.mockjax.js
│ │ │ │ ├── jquery.nestable.min.js
│ │ │ │ ├── jquery.slimscroll.min.js
│ │ │ │ ├── jquery.sparkline.min.js
│ │ │ │ ├── jquery-ui-1.10.3.custom.min.js
│ │ │ │ ├── jquery-ui-1.10.3.full.min.js
│ │ │ │ ├── jquery-ui.min.js
│ │ │ │ ├── jquery.ui.touch-punch.min.js
│ │ │ │ ├── jquery.validate.min.js
│ │ │ │ ├── markdown
│ │ │ │ │ ├── bootstrap-markdown.min.js
│ │ │ │ │ └── markdown.min.js
│ │ │ │ ├── Particleground.js
│ │ │ │ ├── respond.min.js
│ │ │ │ ├── select2.min.js
│ │ │ │ ├── stopExecutionOnTimeout.js
│ │ │ │ ├── Treatment.js
│ │ │ │ ├── typeahead-bs2.min.js
│ │ │ │ └── x-editable
│ │ │ │ ├── ace-editable.min.js
│ │ │ │ └── bootstrap-editable.min.js
│ │ │ └── layui
│ │ │ ├── css
│ │ │ │ ├── global.css
│ │ │ │ ├── layui.css
│ │ │ │ ├── layui.mobile.css
│ │ │ │ └── modules
│ │ │ │ ├── code.css
│ │ │ │ ├── laydate
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ └── layer
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── lay
│ │ │ │ └── modules
│ │ │ │ ├── code.js
│ │ │ │ ├── element.js
│ │ │ │ ├── flow.js
│ │ │ │ ├── form.js
│ │ │ │ ├── laydate.js
│ │ │ │ ├── layedit.js
│ │ │ │ ├── layer.js
│ │ │ │ ├── laypage.js
│ │ │ │ ├── laytpl.js
│ │ │ │ ├── mobile.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── upload.js
│ │ │ │ └── util.js
│ │ │ └── layui.js
│ │ ├── bootm.jsp
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ └── bootstrap-theme.min.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ └── bootstrap.min.js
│ │ ├── css
│ │ │ ├── animate.min.css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap-table.min.css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrapValidator.min.css
│ │ │ ├── default.css
│ │ │ ├── demo.css
│ │ │ ├── dtree.css
│ │ │ ├── loaders.css
│ │ │ ├── normalize.css
│ │ │ ├── style.min.css
│ │ │ └── styles.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── img
│ │ │ ├── add.png
│ │ │ ├── back.png
│ │ │ ├── base.gif
│ │ │ ├── cd.gif
│ │ │ ├── delete.png
│ │ │ ├── empty.gif
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── globe.gif
│ │ │ ├── imgfolder.gif
│ │ │ ├── joinbottom.gif
│ │ │ ├── join.gif
│ │ │ ├── key.png
│ │ │ ├── line.gif
│ │ │ ├── lock_icon_copy.png
│ │ │ ├── logo.png
│ │ │ ├── minusbottom.gif
│ │ │ ├── minus.gif
│ │ │ ├── modify.png
│ │ │ ├── musicfolder.gif
│ │ │ ├── nolines_minus.gif
│ │ │ ├── nolines_plus.gif
│ │ │ ├── page.gif
│ │ │ ├── plusbottom.gif
│ │ │ ├── plus.gif
│ │ │ ├── puff.svg
│ │ │ ├── question.gif
│ │ │ ├── save.png
│ │ │ ├── search.png
│ │ │ ├── Starry.jpg
│ │ │ ├── Thumbs.db
│ │ │ ├── tick.png
│ │ │ ├── trash.gif
│ │ │ ├── u=586442802,1497743792&fm=23&gp=0.jpg.gif
│ │ │ └── user_icon_copy.png
│ │ ├── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── bootstrap-table.min.js
│ │ │ ├── bootstrap-table-zh-CN.min.js
│ │ │ ├── bootstrapValidator.min.js
│ │ │ ├── common.js
│ │ │ ├── datePicker.js
│ │ │ ├── dtree.js
│ │ │ ├── echarts.min.js
│ │ │ ├── employeeTable.js
│ │ │ ├── jquery-1.9.0.min.js
│ │ │ ├── jquery-2.1.1.min.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.mockjax.js
│ │ │ ├── jquery-ui.min.js
│ │ │ ├── Particleground.js
│ │ │ ├── searchTable.js
│ │ │ ├── stopExecutionOnTimeout.js
│ │ │ ├── ticketTable.js
│ │ │ ├── tickettypeTable.js
│ │ │ ├── Treatment.js
│ │ │ └── warehouse.js
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── My97DatePicker
│ │ │ ├── calendar.js
│ │ │ ├── config.js
│ │ │ ├── lang
│ │ │ │ ├── en.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh-tw.js
│ │ │ ├── My97DatePicker.htm
│ │ │ ├── skin
│ │ │ │ ├── datePicker.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ ├── WdatePicker.css
│ │ │ │ └── whyGreen
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── WdatePicker.js
│ │ │ └── 开发包
│ │ │ ├── lang
│ │ │ │ ├── en.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh-tw.js
│ │ │ ├── readme.txt
│ │ │ └── skin
│ │ │ ├── datePicker.gif
│ │ │ ├── default
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── WdatePicker.css
│ │ │ └── whyGreen
│ │ │ ├── bg.jpg
│ │ │ ├── datepicker.css
│ │ │ └── img.gif
│ │ ├── nicEdit
│ │ │ ├── nicEdit.js
│ │ │ └── nicEditorIcons.gif
│ │ └── WEB-INF
│ │ ├── page
│ │ │ ├── base.jsp
│ │ │ ├── employee
│ │ │ │ ├── employeeCreate.jsp
│ │ │ │ ├── employeeList.jsp
│ │ │ │ ├── employeeUpdate.jsp
│ │ │ │ └── searchResult.jsp
│ │ │ ├── goods
│ │ │ │ ├── jGoodCreate.jsp
│ │ │ │ ├── jGoodList.jsp
│ │ │ │ ├── jGoodUpdate.jsp
│ │ │ │ ├── left.jsp
│ │ │ │ └── main.jsp
│ │ │ ├── img
│ │ │ │ ├── key.png
│ │ │ │ ├── lock_icon_copy.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── puff.svg
│ │ │ │ ├── Starry.jpg
│ │ │ │ ├── tick.png
│ │ │ │ └── user_icon_copy.png
│ │ │ ├── index.jsp
│ │ │ ├── layui
│ │ │ │ ├── css
│ │ │ │ │ ├── global.css
│ │ │ │ │ ├── layui.css
│ │ │ │ │ ├── layui.mobile.css
│ │ │ │ │ └── modules
│ │ │ │ │ ├── code.css
│ │ │ │ │ ├── laydate
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── layer
│ │ │ │ │ └── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── lay
│ │ │ │ │ └── modules
│ │ │ │ │ ├── code.js
│ │ │ │ │ ├── element.js
│ │ │ │ │ ├── flow.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── layedit.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ ├── laytpl.js
│ │ │ │ │ ├── mobile.js
│ │ │ │ │ ├── tree.js
│ │ │ │ │ ├── upload.js
│ │ │ │ │ └── util.js
│ │ │ │ └── layui.js
│ │ │ ├── login.jsp
│ │ │ ├── search
│ │ │ │ ├── search1.jsp
│ │ │ │ ├── search2.jsp
│ │ │ │ └── search3.jsp
│ │ │ ├── sysadmin
│ │ │ │ └── login
│ │ │ │ └── login.jsp
│ │ │ ├── test.jsp
│ │ │ ├── ticket
│ │ │ │ ├── searchResult.jsp
│ │ │ │ ├── ticketCreate.jsp
│ │ │ │ ├── ticketList.jsp
│ │ │ │ └── ticketUpdate.jsp
│ │ │ ├── ticketType
│ │ │ │ ├── searchResult.jsp
│ │ │ │ ├── ticketTypeCreate.jsp
│ │ │ │ ├── ticketTypeList.jsp
│ │ │ │ └── ticketTypeUpdate.jsp
│ │ │ └── top.jsp
│ │ └── web.xml
│ └── target
│ ├── classes
│ │ ├── com
│ │ │ └── zzh
│ │ │ └── ycgxy
│ │ │ ├── common
│ │ │ │ ├── CommonUtil.class
│ │ │ │ ├── Constants.class
│ │ │ │ └── JsonUtils.class
│ │ │ ├── controller
│ │ │ │ ├── BasicController.class
│ │ │ │ ├── EmployeeController.class
│ │ │ │ ├── IndexController.class
│ │ │ │ ├── LoginController.class
│ │ │ │ ├── ManagerErrorController.class
│ │ │ │ ├── SearchController.class
│ │ │ │ ├── TicketController.class
│ │ │ │ └── TicketTypeController.class
│ │ │ ├── dao
│ │ │ │ ├── EmployeeMapper.class
│ │ │ │ ├── EmployeeMapper.xml
│ │ │ │ ├── RecallMapper.class
│ │ │ │ ├── RecallMapper.xml
│ │ │ │ ├── SearchMapper.class
│ │ │ │ ├── SearchMapper.xml
│ │ │ │ ├── SellMapper.class
│ │ │ │ ├── SellMapper.xml
│ │ │ │ ├── TicketMapper.class
│ │ │ │ ├── TicketMapper.xml
│ │ │ │ ├── TickettypeMapper.class
│ │ │ │ └── TickettypeMapper.xml
│ │ │ ├── entity
│ │ │ │ ├── Employee.class
│ │ │ │ ├── EmployeeExample$Criteria.class
│ │ │ │ ├── EmployeeExample$Criterion.class
│ │ │ │ ├── EmployeeExample$GeneratedCriteria.class
│ │ │ │ ├── EmployeeExample.class
│ │ │ │ ├── RecallExample$Criteria.class
│ │ │ │ ├── RecallExample$Criterion.class
│ │ │ │ ├── RecallExample$GeneratedCriteria.class
│ │ │ │ ├── RecallExample.class
│ │ │ │ ├── RecallKey.class
│ │ │ │ ├── Sell.class
│ │ │ │ ├── SellExample$Criteria.class
│ │ │ │ ├── SellExample$Criterion.class
│ │ │ │ ├── SellExample$GeneratedCriteria.class
│ │ │ │ ├── SellExample.class
│ │ │ │ ├── SellKey.class
│ │ │ │ ├── Ticket.class
│ │ │ │ ├── TicketExample$Criteria.class
│ │ │ │ ├── TicketExample$Criterion.class
│ │ │ │ ├── TicketExample$GeneratedCriteria.class
│ │ │ │ ├── TicketExample.class
│ │ │ │ ├── TicketKey.class
│ │ │ │ ├── Tickettype.class
│ │ │ │ ├── TickettypeExample$Criteria.class
│ │ │ │ ├── TickettypeExample$Criterion.class
│ │ │ │ ├── TickettypeExample$GeneratedCriteria.class
│ │ │ │ └── TickettypeExample.class
│ │ │ ├── model
│ │ │ │ ├── DeleteObj.class
│ │ │ │ ├── PaginationResult.class
│ │ │ │ ├── SaleResult.class
│ │ │ │ ├── searchByDayResult.class
│ │ │ │ ├── searchByMonthResult.class
│ │ │ │ └── TicketAndType.class
│ │ │ ├── query
│ │ │ │ ├── EmployeeQO.class
│ │ │ │ └── ResultCodeQO.class
│ │ │ └── service
│ │ │ ├── EmployeeService.class
│ │ │ ├── LoginService.class
│ │ │ ├── SearchService.class
│ │ │ ├── TicketService.class
│ │ │ └── TicketTypeService.class
│ │ ├── mybatis
│ │ │ └── mybatis-config.xml
│ │ ├── properties
│ │ │ ├── db.properties
│ │ │ └── log4j.properties
│ │ ├── resource
│ │ │ └── resource.properties
│ │ └── spring
│ │ ├── applicationContext-dao.xml
│ │ ├── applicationContext-service.xml
│ │ ├── applicationContext-transaction.xml
│ │ └── springmvc.xml
│ ├── m2e-wtp
│ │ └── web-resources
│ │ └── META-INF
│ │ └── maven
│ │ └── cn.zzh
│ │ └── sys-yc
│ │ ├── pom.properties
│ │ └── pom.xml
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ └── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── tomcat
│ ├── conf
│ │ ├── logging.properties
│ │ ├── tomcat-users.xml
│ │ └── web.xml
│ ├── logs
│ │ └── access_log.2017-12-26
│ └── work
│ └── Tomcat
│ └── localhost
│ └── _
│ └── org
│ └── apache
│ └── jsp
│ ├── bootm_jsp.class
│ ├── bootm_jsp.java
│ └── WEB_002dINF
│ └── page
│ ├── employee
│ │ ├── employeeList_jsp.class
│ │ └── employeeList_jsp.java
│ ├── index_jsp.class
│ ├── index_jsp.java
│ ├── login_jsp.class
│ ├── login_jsp.java
│ ├── search
│ │ ├── search1_jsp.class
│ │ ├── search1_jsp.java
│ │ ├── search2_jsp.class
│ │ ├── search2_jsp.java
│ │ ├── search3_jsp.class
│ │ └── search3_jsp.java
│ ├── ticket
│ │ ├── searchResult_jsp.class
│ │ ├── searchResult_jsp.java
│ │ ├── ticketList_jsp.class
│ │ └── ticketList_jsp.java
│ └── ticketType
│ ├── ticketTypeCreate_jsp.class
│ ├── ticketTypeCreate_jsp.java
│ ├── ticketTypeList_jsp.class
│ ├── ticketTypeList_jsp.java
│ ├── ticketTypeUpdate_jsp.class
│ └── ticketTypeUpdate_jsp.java
└── 数据库
└── sys.sql
128 directories, 477 files