实例介绍
基于JAVA语言平台开发的机场车辆调度系统.,一个maven项目,可以下载下来学习或者做毕业设计,数据库和程序源文件都有的,是完整的项目,分享给大家,希望大家学习进步
【实例截图】
【核心代码】
基于JAVA语言平台开发的机场车辆调度系统
├── myproject
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── how2java
│ │ │ └── springboot
│ │ │ ├── Application.java
│ │ │ ├── dao
│ │ │ │ ├── CarMapper.java
│ │ │ │ ├── ParkingMapper.java
│ │ │ │ ├── PlaneMapper.java
│ │ │ │ └── UserMapper.java
│ │ │ ├── exception
│ │ │ │ └── GlobalExceptionHandler.java
│ │ │ ├── mapper
│ │ │ │ └── userMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── AirlineInfo.java
│ │ │ │ ├── Car.java
│ │ │ │ ├── Parking.java
│ │ │ │ ├── Plane.java
│ │ │ │ └── User.java
│ │ │ ├── service
│ │ │ │ ├── CarService.java
│ │ │ │ ├── ParkingService.java
│ │ │ │ ├── PlaneService.java
│ │ │ │ ├── UserService.java
│ │ │ │ └── entity
│ │ │ │ ├── Active.java
│ │ │ │ ├── Airline.java
│ │ │ │ ├── CarState.java
│ │ │ │ ├── PlaneState.java
│ │ │ │ ├── PlaneType.java
│ │ │ │ ├── Position.java
│ │ │ │ └── ScheduleType.java
│ │ │ └── web
│ │ │ ├── AirlineController.java
│ │ │ ├── CarController.java
│ │ │ ├── EmployerController.java
│ │ │ ├── FixController.java
│ │ │ ├── HelloController.java
│ │ │ ├── PlaneController.java
│ │ │ ├── ScheduleController.java
│ │ │ ├── UserController.java
│ │ │ ├── indexController.java
│ │ │ ├── loginController.java
│ │ │ └── view
│ │ │ ├── CarView.java
│ │ │ └── PlaneView.java
│ │ ├── resources
│ │ │ ├── application.properties
│ │ │ └── mapper
│ │ │ └── userMapper.xml
│ │ └── webapp
│ │ ├── WEB-INF
│ │ │ ├── css
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── 3.3.6
│ │ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ └── bootstrap.min.css.map
│ │ │ │ │ └── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ ├── htmleaf-demo.css
│ │ │ │ └── new_file.css
│ │ │ ├── fonts
│ │ │ │ ├── icomoon.eot
│ │ │ │ ├── icomoon.svg
│ │ │ │ ├── icomoon.ttf
│ │ │ │ ├── icomoon.woff
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── images
│ │ │ │ ├── HBuilder.png
│ │ │ │ ├── aiwrap.png
│ │ │ │ └── bg.png
│ │ │ ├── js
│ │ │ │ ├── bootstrap
│ │ │ │ │ └── 3.3.6
│ │ │ │ │ ├── bootstrap.js
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ └── npm.js
│ │ │ │ └── jquery
│ │ │ │ └── 2.0.0
│ │ │ │ └── jquery.min.js
│ │ │ ├── jsp
│ │ │ │ ├── boss
│ │ │ │ │ ├── bossIndex.jsp
│ │ │ │ │ ├── car.jsp
│ │ │ │ │ ├── employer.jsp
│ │ │ │ │ └── plane.jsp
│ │ │ │ ├── driver
│ │ │ │ │ ├── carSchedule.jsp
│ │ │ │ │ ├── driverIndex.jsp
│ │ │ │ │ └── fix.jsp
│ │ │ │ ├── employer
│ │ │ │ │ ├── airline.jsp
│ │ │ │ │ ├── employerIndex.jsp
│ │ │ │ │ ├── fix.jsp
│ │ │ │ │ ├── schedule.jsp
│ │ │ │ │ └── setSchedule.jsp
│ │ │ │ ├── errorPage.jsp
│ │ │ │ ├── hello.jsp
│ │ │ │ ├── listUser.jsp
│ │ │ │ └── login
│ │ │ │ ├── index.html
│ │ │ │ └── login.jsp
│ │ │ ├── related
│ │ │ │ ├── 1.jpg
│ │ │ │ └── 2.jpg
│ │ │ └── static
│ │ │ ├── README.md
│ │ │ ├── admin-add.html
│ │ │ ├── admin-cate.html
│ │ │ ├── admin-edit.html
│ │ │ ├── admin-list.html
│ │ │ ├── admin-role.html
│ │ │ ├── admin-rule.html
│ │ │ ├── echarts1.html
│ │ │ ├── echarts2.html
│ │ │ ├── echarts3.html
│ │ │ ├── echarts4.html
│ │ │ ├── echarts5.html
│ │ │ ├── echarts6.html
│ │ │ ├── echarts7.html
│ │ │ ├── echarts8.html
│ │ │ ├── index.html
│ │ │ ├── login.html
│ │ │ ├── member-add.html
│ │ │ ├── member-del.html
│ │ │ ├── member-edit.html
│ │ │ ├── member-list.html
│ │ │ ├── member-password.html
│ │ │ ├── order-add.html
│ │ │ ├── order-list.html
│ │ │ ├── role-add.html
│ │ │ ├── user.json
│ │ │ └── welcome.html
│ │ ├── html
│ │ │ ├── img
│ │ │ │ └── HBuilder.png
│ │ │ ├── index.html
│ │ │ ├── lesson1.txt
│ │ │ ├── lesson2.txt
│ │ │ ├── new_file.css
│ │ │ ├── new_file.html
│ │ │ ├── test.css
│ │ │ ├── test.js
│ │ │ └── 空白文件.html
│ │ ├── static
│ │ │ └── zhengAdmin-master
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── crud.html
│ │ │ ├── demo.html
│ │ │ ├── index.html
│ │ │ ├── login.html
│ │ │ └── resources
│ │ │ ├── css
│ │ │ │ ├── admin.css
│ │ │ │ ├── common.css
│ │ │ │ └── login.css
│ │ │ ├── data
│ │ │ │ └── data1.json
│ │ │ ├── images
│ │ │ │ ├── avatar.jpg
│ │ │ │ ├── logo.png
│ │ │ │ ├── zheng-cms-theme-m1.png
│ │ │ │ ├── zheng-cms-theme-m2.png
│ │ │ │ ├── zheng-cms-theme.png
│ │ │ │ ├── zheng-cms.png
│ │ │ │ ├── zheng-oss-theme.png
│ │ │ │ ├── zheng-oss.png
│ │ │ │ ├── zheng-pay-theme.png
│ │ │ │ ├── zheng-pay.png
│ │ │ │ ├── zheng-ucenter-theme.png
│ │ │ │ ├── zheng-ucenter.png
│ │ │ │ ├── zheng-upms-theme.png
│ │ │ │ ├── zheng-upms.png
│ │ │ │ └── zsz.psd
│ │ │ ├── js
│ │ │ │ ├── admin.js
│ │ │ │ ├── common.js
│ │ │ │ └── login.js
│ │ │ └── plugins
│ │ │ ├── BootstrapMenu.min.js
│ │ │ ├── My97DatePicker
│ │ │ │ ├── WdatePicker.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ └── skin
│ │ │ │ ├── WdatePicker.css
│ │ │ │ ├── datePicker.gif
│ │ │ │ ├── default
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── whyGreen
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── angular
│ │ │ │ ├── angular-1.5.8
│ │ │ │ │ ├── angular-animate.min.js
│ │ │ │ │ ├── angular-aria.min.js
│ │ │ │ │ ├── angular-locale_zh-cn.js
│ │ │ │ │ ├── angular-messages.min.js
│ │ │ │ │ └── angular.min.js
│ │ │ │ └── angular-material-1.1.1
│ │ │ │ ├── angular-material.min.css
│ │ │ │ └── angular-material.min.js
│ │ │ ├── awesome-bootstrap-checkbox
│ │ │ │ ├── awesome-bootstrap-checkbox.css
│ │ │ │ └── index.html
│ │ │ ├── bootstrap-3.3.0
│ │ │ │ ├── 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
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── npm.js
│ │ │ ├── bootstrap-table-1.11.0
│ │ │ │ ├── bootstrap-table.min.css
│ │ │ │ ├── bootstrap-table.min.js
│ │ │ │ └── locale
│ │ │ │ ├── bootstrap-table-en-US.js
│ │ │ │ ├── bootstrap-table-en-US.min.js
│ │ │ │ ├── bootstrap-table-zh-CN.js
│ │ │ │ └── bootstrap-table-zh-CN.min.js
│ │ │ ├── checkbix
│ │ │ │ ├── css
│ │ │ │ │ ├── checkbix.css
│ │ │ │ │ └── checkbix.min.css
│ │ │ │ └── js
│ │ │ │ ├── checkbix.js
│ │ │ │ ├── checkbix.min.css
│ │ │ │ └── checkbix.min.js
│ │ │ ├── device.min.js
│ │ │ ├── fastclick.min.js
│ │ │ ├── font-awesome-4.7.0
│ │ │ │ ├── css
│ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ └── font-awesome.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── fullPage
│ │ │ │ ├── jquery.fullPage.css
│ │ │ │ ├── jquery.fullPage.js
│ │ │ │ ├── jquery.fullPage.min.js
│ │ │ │ └── jquery.jdirk.min.js
│ │ │ ├── jquery-confirm
│ │ │ │ ├── jquery-confirm.min.css
│ │ │ │ └── jquery-confirm.min.js
│ │ │ ├── jquery.1.12.4.min.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── malihu-custom-scrollbar-plugin
│ │ │ │ ├── jquery.mCustomScrollbar.concat.min.js
│ │ │ │ ├── jquery.mCustomScrollbar.css
│ │ │ │ ├── jquery.mCustomScrollbar.js
│ │ │ │ ├── jquery.mCustomScrollbar.min.css
│ │ │ │ └── mCSB_buttons.png
│ │ │ ├── material-design-iconic-font-2.2.0
│ │ │ │ ├── css
│ │ │ │ │ ├── material-design-iconic-font.css
│ │ │ │ │ └── material-design-iconic-font.min.css
│ │ │ │ └── fonts
│ │ │ │ ├── Material-Design-Iconic-Font.eot
│ │ │ │ ├── Material-Design-Iconic-Font.svg
│ │ │ │ ├── Material-Design-Iconic-Font.ttf
│ │ │ │ ├── Material-Design-Iconic-Font.woff
│ │ │ │ └── Material-Design-Iconic-Font.woff2
│ │ │ ├── select2
│ │ │ │ ├── css
│ │ │ │ │ ├── select2.css
│ │ │ │ │ └── select2.min.css
│ │ │ │ ├── js
│ │ │ │ │ ├── i18n
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── az.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── is.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── ms.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-BR.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sr-Cyrl.js
│ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-CN.js
│ │ │ │ │ │ └── zh-TW.js
│ │ │ │ │ ├── select2.full.js
│ │ │ │ │ ├── select2.full.min.js
│ │ │ │ │ ├── select2.js
│ │ │ │ │ └── select2.min.js
│ │ │ │ └── theme
│ │ │ │ ├── select2-bootstrap.css
│ │ │ │ └── select2-bootstrap.min.css
│ │ │ ├── waves-0.7.5
│ │ │ │ ├── waves.css
│ │ │ │ ├── waves.js
│ │ │ │ ├── waves.min.css
│ │ │ │ ├── waves.min.js
│ │ │ │ └── waves.min.js.map
│ │ │ ├── zTree_v3
│ │ │ │ ├── css
│ │ │ │ │ ├── awesomeStyle
│ │ │ │ │ │ ├── awesome.css
│ │ │ │ │ │ ├── awesome.less
│ │ │ │ │ │ ├── fa.less
│ │ │ │ │ │ └── img
│ │ │ │ │ │ └── loading.gif
│ │ │ │ │ ├── demo.css
│ │ │ │ │ ├── metroStyle
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── line_conn.png
│ │ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ │ ├── metro.gif
│ │ │ │ │ │ │ └── metro.png
│ │ │ │ │ │ └── metroStyle.css
│ │ │ │ │ └── zTreeStyle
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── diy
│ │ │ │ │ │ │ ├── 1_close.png
│ │ │ │ │ │ │ ├── 1_open.png
│ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ │ └── 9.png
│ │ │ │ │ │ ├── line_conn.gif
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── zTreeStandard.gif
│ │ │ │ │ │ └── zTreeStandard.png
│ │ │ │ │ └── zTreeStyle.css
│ │ │ │ └── js
│ │ │ │ ├── jquery.ztree.all.min.js
│ │ │ │ ├── jquery.ztree.core.min.js
│ │ │ │ ├── jquery.ztree.excheck.min.js
│ │ │ │ ├── jquery.ztree.exedit.min.js
│ │ │ │ └── jquery.ztree.exhide.min.js
│ │ │ ├── zheng.autoMail.1.0.min.js
│ │ │ └── zheng.jprogress.0.1.min.js
│ │ └── static2
│ │ ├── Javascript
│ │ │ ├── WdatePicker.js
│ │ │ ├── chart
│ │ │ │ ├── bar.js
│ │ │ │ ├── chord.js
│ │ │ │ ├── eventRiver.js
│ │ │ │ ├── force.js
│ │ │ │ ├── funnel.js
│ │ │ │ ├── gauge.js
│ │ │ │ ├── heatmap.js
│ │ │ │ ├── k.js
│ │ │ │ ├── line.js
│ │ │ │ ├── map.js
│ │ │ │ ├── pie.js
│ │ │ │ ├── radar.js
│ │ │ │ ├── scatter.js
│ │ │ │ ├── tree.js
│ │ │ │ ├── treemap.js
│ │ │ │ ├── venn.js
│ │ │ │ └── wordCloud.js
│ │ │ ├── comm.js
│ │ │ ├── echarts.js
│ │ │ ├── finance-echarts.js
│ │ │ ├── html5shiv.min.js
│ │ │ └── respond.min.js
│ │ ├── config
│ │ │ └── config.js
│ │ ├── css
│ │ │ ├── bind.css
│ │ │ ├── font
│ │ │ │ ├── demo.css
│ │ │ │ ├── demo_fontclass.html
│ │ │ │ ├── demo_symbol.html
│ │ │ │ ├── demo_unicode.html
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.js
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ └── iconfont.woff
│ │ │ ├── images
│ │ │ │ ├── bank.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── login.png
│ │ │ │ ├── logo.png
│ │ │ │ └── ucs-logo.png
│ │ │ ├── index.css
│ │ │ ├── login.css
│ │ │ ├── public.css
│ │ │ ├── public.css.map
│ │ │ ├── theme.css
│ │ │ ├── ucs.css
│ │ │ ├── ucs_bootstrap.css
│ │ │ ├── ucs_rdp_main.css
│ │ │ └── ucs_temp.css
│ │ ├── images
│ │ │ ├── Search.png
│ │ │ ├── Thumbs.db
│ │ │ ├── ajax-loader.gif
│ │ │ ├── bank.png
│ │ │ ├── banner.jpg
│ │ │ ├── bg.jpg
│ │ │ ├── code.png
│ │ │ ├── doc-icon.png
│ │ │ ├── download-icon1.png
│ │ │ ├── drop-down-icon1.png
│ │ │ ├── drop-down-icon2.png
│ │ │ ├── edit-icon1.png
│ │ │ ├── empty.gif
│ │ │ ├── favicon.ico
│ │ │ ├── filter.png
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── join.gif
│ │ │ ├── joinbottom.gif
│ │ │ ├── jpg-icon.png
│ │ │ ├── line.gif
│ │ │ ├── line.png
│ │ │ ├── login-bg.png
│ │ │ ├── logo-white.png
│ │ │ ├── logo.jpg
│ │ │ ├── logo.png
│ │ │ ├── logout.png
│ │ │ ├── menu-icon1.png
│ │ │ ├── menu-icon2.png
│ │ │ ├── minus.gif
│ │ │ ├── minusbottom.gif
│ │ │ ├── nolines_minus.gif
│ │ │ ├── nolines_plus.gif
│ │ │ ├── page.gif
│ │ │ ├── plus.gif
│ │ │ ├── plusbottom.gif
│ │ │ ├── tabli-active.png
│ │ │ ├── upload-icon1.png
│ │ │ ├── user_img.png
│ │ │ ├── wangjin-icon-big.png
│ │ │ ├── wangjin-icon.png
│ │ │ ├── welcome-center.png
│ │ │ └── welcome.jpg
│ │ ├── index.html
│ │ ├── index.js
│ │ ├── libs
│ │ │ ├── encryption.js
│ │ │ ├── es5-sham.min.js
│ │ │ ├── es5-shim.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── public.js
│ │ │ ├── raphael.js
│ │ │ ├── react-dom.js
│ │ │ ├── react-dom.min.js
│ │ │ ├── react.js
│ │ │ ├── react.min.js
│ │ │ ├── u-ajax.min.js
│ │ │ ├── u-eventhub.js
│ │ │ ├── u-eventhub.min.js
│ │ │ ├── u_event_hub.js
│ │ │ ├── ucsmy-ui.js
│ │ │ └── ucsmy-ui.min.js
│ │ ├── login.html
│ │ └── login.js
│ └── target
│ ├── classes
│ │ ├── application.properties
│ │ ├── com
│ │ │ └── how2java
│ │ │ └── springboot
│ │ │ ├── Application.class
│ │ │ ├── dao
│ │ │ │ ├── CarMapper.class
│ │ │ │ ├── ParkingMapper.class
│ │ │ │ ├── PlaneMapper.class
│ │ │ │ └── UserMapper.class
│ │ │ ├── exception
│ │ │ │ └── GlobalExceptionHandler.class
│ │ │ ├── mapper
│ │ │ │ └── userMapper.xml
│ │ │ ├── pojo
│ │ │ │ ├── AirlineInfo.class
│ │ │ │ ├── Car.class
│ │ │ │ ├── Parking.class
│ │ │ │ ├── Plane.class
│ │ │ │ └── User.class
│ │ │ ├── service
│ │ │ │ ├── CarService.class
│ │ │ │ ├── ParkingService.class
│ │ │ │ ├── PlaneService.class
│ │ │ │ ├── UserService.class
│ │ │ │ └── entity
│ │ │ │ ├── Active.class
│ │ │ │ ├── Airline.class
│ │ │ │ ├── CarState.class
│ │ │ │ ├── PlaneState.class
│ │ │ │ ├── PlaneType.class
│ │ │ │ ├── Position.class
│ │ │ │ └── ScheduleType.class
│ │ │ └── web
│ │ │ ├── AirlineController.class
│ │ │ ├── CarController.class
│ │ │ ├── EmployerController.class
│ │ │ ├── FixController.class
│ │ │ ├── HelloController.class
│ │ │ ├── PlaneController.class
│ │ │ ├── ScheduleController.class
│ │ │ ├── UserController.class
│ │ │ ├── indexController.class
│ │ │ ├── loginController.class
│ │ │ └── view
│ │ │ ├── CarView.class
│ │ │ └── PlaneView.class
│ │ └── mapper
│ │ └── userMapper.xml
│ └── m2e-wtp
│ └── web-resources
│ └── META-INF
│ ├── MANIFEST.MF
│ └── maven
│ └── com.how2java
│ └── springboot
│ ├── pom.properties
│ └── pom.xml
└── 数据库
└── dbpro.sql
120 directories, 473 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论