实例介绍
本项目使用IDEA作为IDE,bootstrap(HTML5 CSS JS)做前端,springMVC做后端,mySQL做数据库。 UI请使用蓝色和白色为主色调。不用做得太华丽,做得像一个正常的毕设就行。 首先是登录,分为业主和管理员两种身份。不同的身份看到的模块数量和内容不一样。 系统管理模块,我设想的是每个人对自己这个账户的基本信息的修改。这一部分我不太确定,可以适当自由添加一点功能。 楼盘管理,业主只能看到自己的住房信息。管理员这边,可以显示这个小区有哪些大楼,选择大楼可以看到大楼内部有哪些房间,还可以显示这些房间与哪些业主相关联(即被谁买下),可以查找指定业主的住房。管理员可以
【实例截图】
【核心代码】
物业管理系统的设计与实现
├── doc
│ ├── zzwy.sql
│ └── 程序部署文档.txt
├── pom.xml
└── src
└── main
├── java
│ └── com
│ └── learn
│ ├── annotation
│ │ └── SysLog.java
│ ├── aop
│ │ └── SysLogAspect.java
│ ├── controller
│ │ ├── AbstractController.java
│ │ ├── CarController.java
│ │ ├── FixController.java
│ │ ├── HouseController.java
│ │ ├── RecordController.java
│ │ ├── RoomController.java
│ │ ├── SysConfigController.java
│ │ ├── SysGeneratorController.java
│ │ ├── SysLogController.java
│ │ ├── SysLoginController.java
│ │ ├── SysMenuController.java
│ │ ├── SysPageController.java
│ │ ├── SysRoleController.java
│ │ ├── SysUserController.java
│ │ ├── TsController.java
│ │ └── UploadController.java
│ ├── dao
│ │ ├── BaseDao.java
│ │ ├── CarDao.java
│ │ ├── CarDao.xml
│ │ ├── FixDao.java
│ │ ├── FixDao.xml
│ │ ├── HouseDao.java
│ │ ├── HouseDao.xml
│ │ ├── RecordDao.java
│ │ ├── RecordDao.xml
│ │ ├── RoomDao.java
│ │ ├── RoomDao.xml
│ │ ├── SysConfigDao.java
│ │ ├── SysGeneratorDao.java
│ │ ├── SysLogDao.java
│ │ ├── SysMenuDao.java
│ │ ├── SysRoleDao.java
│ │ ├── SysRoleMenuDao.java
│ │ ├── SysUserDao.java
│ │ ├── SysUserRoleDao.java
│ │ ├── TsDao.java
│ │ └── TsDao.xml
│ ├── entity
│ │ ├── CarEntity.java
│ │ ├── ColumnEntity.java
│ │ ├── FixEntity.java
│ │ ├── HouseEntity.java
│ │ ├── RecordEntity.java
│ │ ├── RoomEntity.java
│ │ ├── SysConfigEntity.java
│ │ ├── SysLogEntity.java
│ │ ├── SysMenuEntity.java
│ │ ├── SysRoleEntity.java
│ │ ├── SysRoleMenuEntity.java
│ │ ├── SysUserEntity.java
│ │ ├── SysUserRoleEntity.java
│ │ ├── TableEntity.java
│ │ └── TsEntity.java
│ ├── service
│ │ ├── CarService.java
│ │ ├── FixService.java
│ │ ├── HouseService.java
│ │ ├── impl
│ │ │ ├── CarServiceImpl.java
│ │ │ ├── FixServiceImpl.java
│ │ │ ├── HouseServiceImpl.java
│ │ │ ├── RecordServiceImpl.java
│ │ │ ├── RoomServiceImpl.java
│ │ │ ├── SysConfigServiceImpl.java
│ │ │ ├── SysGeneratorServiceImpl.java
│ │ │ ├── SysLogServiceImpl.java
│ │ │ ├── SysMenuServiceImpl.java
│ │ │ ├── SysRoleMenuServiceImpl.java
│ │ │ ├── SysRoleServiceImpl.java
│ │ │ ├── SysUserRoleServiceImpl.java
│ │ │ ├── SysUserServiceImpl.java
│ │ │ └── TsServiceImpl.java
│ │ ├── RecordService.java
│ │ ├── RoomService.java
│ │ ├── SysConfigService.java
│ │ ├── SysGeneratorService.java
│ │ ├── SysLogService.java
│ │ ├── SysMenuService.java
│ │ ├── SysRoleMenuService.java
│ │ ├── SysRoleService.java
│ │ ├── SysUserRoleService.java
│ │ ├── SysUserService.java
│ │ └── TsService.java
│ ├── shiro
│ │ ├── UserRealm.java
│ │ └── VelocityShiro.java
│ ├── task
│ │ └── TestTask.java
│ ├── utils
│ │ ├── ConfigConstant.java
│ │ ├── Constant.java
│ │ ├── DateUtils.java
│ │ ├── GenUtils.java
│ │ ├── HttpContextUtils.java
│ │ ├── IPUtils.java
│ │ ├── MultipartFileUtil.java
│ │ ├── PageUtils.java
│ │ ├── Query.java
│ │ ├── R.java
│ │ ├── RRExceptionHandler.java
│ │ ├── RRException.java
│ │ ├── ShiroUtils.java
│ │ └── SpringContextUtils.java
│ ├── validator
│ │ ├── Assert.java
│ │ ├── group
│ │ │ ├── AddGroup.java
│ │ │ ├── AliyunGroup.java
│ │ │ ├── Group.java
│ │ │ ├── QcloudGroup.java
│ │ │ ├── QiniuGroup.java
│ │ │ └── UpdateGroup.java
│ │ └── ValidatorUtils.java
│ └── xss
│ ├── HTMLFilter.java
│ ├── SQLFilter.java
│ ├── XssFilter.java
│ └── XssHttpServletRequestWrapper.java
├── resources
│ ├── com
│ │ └── learn
│ │ └── dao
│ │ ├── SysConfigDao.xml
│ │ ├── SysGeneratorDao.xml
│ │ ├── SysLogDao.xml
│ │ ├── SysMenuDao.xml
│ │ ├── SysRoleDao.xml
│ │ ├── SysRoleMenuDao.xml
│ │ ├── SysUserDao.xml
│ │ └── SysUserRoleDao.xml
│ ├── db.properties
│ ├── generator.properties
│ ├── log4j.properties
│ ├── mybatis.xml
│ ├── renren-shiro.xml
│ ├── spring-jdbc.xml
│ ├── spring-mvc.xml
│ └── template
│ ├── Controller.java.vm
│ ├── Dao.java.vm
│ ├── Dao.xml.vm
│ ├── Entity.java.vm
│ ├── list.html.vm
│ ├── list.js.vm
│ ├── menu.sql.vm
│ ├── ServiceImpl.java.vm
│ └── Service.java.vm
└── webapp
├── index.html
├── js
│ ├── admin
│ │ ├── car.js
│ │ ├── fixall.js
│ │ ├── fix.js
│ │ ├── house.js
│ │ ├── record.js
│ │ ├── room.js
│ │ ├── tsall.js
│ │ ├── ts.js
│ │ └── userroom.js
│ ├── common.js
│ ├── index1.js
│ ├── navtab.js
│ └── sys
│ ├── config.js
│ ├── generator.js
│ ├── log.js
│ ├── menu.js
│ ├── oss.js
│ ├── role.js
│ └── user.js
├── login.html
├── reg.html
├── statics
│ ├── bg.jpg
│ ├── css
│ │ ├── AdminLTE.min.css
│ │ ├── all-skins.min.css
│ │ ├── bootstrap.min.css
│ │ ├── font-awesome.min.css
│ │ ├── index1.css
│ │ └── main.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── fontawesome-webfont.woff2
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── libs
│ │ ├── ajaxupload.js
│ │ ├── app.js
│ │ ├── app.min.js
│ │ ├── bootstrap.min.js
│ │ ├── fastclick.min.js
│ │ ├── jquery.min.js
│ │ ├── jquery.slimscroll.min.js
│ │ ├── router.js
│ │ ├── vue.min.js
│ │ └── vue-validator.min.js
│ └── plugins
│ ├── ckeditor
│ │ ├── build-config.js
│ │ ├── CHANGES.md
│ │ ├── ckeditor.js
│ │ ├── config.js
│ │ ├── contents.css
│ │ ├── lang
│ │ │ ├── af.js
│ │ │ ├── ar.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── gl.js
│ │ │ ├── gu.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── ku.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── mk.js
│ │ │ ├── mn.js
│ │ │ ├── ms.js
│ │ │ ├── nb.js
│ │ │ ├── nl.js
│ │ │ ├── no.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr.js
│ │ │ ├── sr-latn.js
│ │ │ ├── sv.js
│ │ │ ├── th.js
│ │ │ ├── tr.js
│ │ │ ├── tt.js
│ │ │ ├── ug.js
│ │ │ ├── uk.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh.js
│ │ ├── plugins
│ │ │ ├── a11yhelp
│ │ │ │ └── dialogs
│ │ │ │ └── a11yhelp.js
│ │ │ ├── about
│ │ │ │ └── dialogs
│ │ │ │ ├── about.js
│ │ │ │ └── logo_ckeditor.png
│ │ │ ├── clipboard
│ │ │ │ └── dialogs
│ │ │ │ └── paste.js
│ │ │ ├── colordialog
│ │ │ │ └── dialogs
│ │ │ │ └── colordialog.js
│ │ │ ├── dialog
│ │ │ │ └── dialogDefinition.js
│ │ │ ├── div
│ │ │ │ └── dialogs
│ │ │ │ └── div.js
│ │ │ ├── find
│ │ │ │ └── dialogs
│ │ │ │ └── find.js
│ │ │ ├── flash
│ │ │ │ ├── dialogs
│ │ │ │ │ └── flash.js
│ │ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ │ ├── forms
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── button.js
│ │ │ │ │ ├── checkbox.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── hiddenfield.js
│ │ │ │ │ ├── radio.js
│ │ │ │ │ ├── select.js
│ │ │ │ │ ├── textarea.js
│ │ │ │ │ └── textfield.js
│ │ │ │ └── images
│ │ │ │ └── hiddenfield.gif
│ │ │ ├── icons_hidpi.png
│ │ │ ├── icons.png
│ │ │ ├── iframe
│ │ │ │ ├── dialogs
│ │ │ │ │ └── iframe.js
│ │ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ │ ├── image
│ │ │ │ ├── dialogs
│ │ │ │ │ └── image.js
│ │ │ │ └── images
│ │ │ │ └── noimage.png
│ │ │ ├── link
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor.js
│ │ │ │ │ └── link.js
│ │ │ │ └── images
│ │ │ │ └── anchor.png
│ │ │ ├── liststyle
│ │ │ │ └── dialogs
│ │ │ │ └── liststyle.js
│ │ │ ├── magicline
│ │ │ │ └── images
│ │ │ │ ├── icon.png
│ │ │ │ └── icon-rtl.png
│ │ │ ├── pagebreak
│ │ │ │ └── images
│ │ │ │ └── pagebreak.gif
│ │ │ ├── pastefromword
│ │ │ │ └── filter
│ │ │ │ └── default.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scayt
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── options.js
│ │ │ │ │ └── toolbar.css
│ │ │ │ ├── LICENSE.md
│ │ │ │ └── README.md
│ │ │ ├── showblocks
│ │ │ │ └── images
│ │ │ │ ├── block_address.png
│ │ │ │ ├── block_blockquote.png
│ │ │ │ ├── block_div.png
│ │ │ │ ├── block_h1.png
│ │ │ │ ├── block_h2.png
│ │ │ │ ├── block_h3.png
│ │ │ │ ├── block_h4.png
│ │ │ │ ├── block_h5.png
│ │ │ │ ├── block_h6.png
│ │ │ │ ├── block_p.png
│ │ │ │ └── block_pre.png
│ │ │ ├── smiley
│ │ │ │ ├── dialogs
│ │ │ │ │ └── smiley.js
│ │ │ │ └── images
│ │ │ │ ├── angel_smile.gif
│ │ │ │ ├── angel_smile.png
│ │ │ │ ├── angry_smile.gif
│ │ │ │ ├── angry_smile.png
│ │ │ │ ├── broken_heart.gif
│ │ │ │ ├── broken_heart.png
│ │ │ │ ├── confused_smile.gif
│ │ │ │ ├── confused_smile.png
│ │ │ │ ├── cry_smile.gif
│ │ │ │ ├── cry_smile.png
│ │ │ │ ├── devil_smile.gif
│ │ │ │ ├── devil_smile.png
│ │ │ │ ├── embaressed_smile.gif
│ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ ├── embarrassed_smile.png
│ │ │ │ ├── envelope.gif
│ │ │ │ ├── envelope.png
│ │ │ │ ├── heart.gif
│ │ │ │ ├── heart.png
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── kiss.png
│ │ │ │ ├── lightbulb.gif
│ │ │ │ ├── lightbulb.png
│ │ │ │ ├── omg_smile.gif
│ │ │ │ ├── omg_smile.png
│ │ │ │ ├── regular_smile.gif
│ │ │ │ ├── regular_smile.png
│ │ │ │ ├── sad_smile.gif
│ │ │ │ ├── sad_smile.png
│ │ │ │ ├── shades_smile.gif
│ │ │ │ ├── shades_smile.png
│ │ │ │ ├── teeth_smile.gif
│ │ │ │ ├── teeth_smile.png
│ │ │ │ ├── thumbs_down.gif
│ │ │ │ ├── thumbs_down.png
│ │ │ │ ├── thumbs_up.gif
│ │ │ │ ├── thumbs_up.png
│ │ │ │ ├── tongue_smile.gif
│ │ │ │ ├── tongue_smile.png
│ │ │ │ └── tounge_smile.gif
│ │ │ └── wsc
│ │ │ ├── LICENSE.md
│ │ │ └── README.md
│ │ ├── skins
│ │ │ └── moono
│ │ │ ├── dialog.css
│ │ │ ├── dialog_ie7.css
│ │ │ ├── dialog_ie8.css
│ │ │ ├── dialog_ie.css
│ │ │ ├── dialog_iequirks.css
│ │ │ ├── editor.css
│ │ │ ├── editor_gecko.css
│ │ │ ├── editor_ie7.css
│ │ │ ├── editor_ie8.css
│ │ │ ├── editor_ie.css
│ │ │ ├── editor_iequirks.css
│ │ │ ├── icons_hidpi.png
│ │ │ ├── icons.png
│ │ │ ├── images
│ │ │ │ ├── arrow.png
│ │ │ │ ├── close.png
│ │ │ │ ├── hidpi
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── lock-open.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ └── refresh.png
│ │ │ │ ├── lock-open.png
│ │ │ │ ├── lock.png
│ │ │ │ └── refresh.png
│ │ │ └── readme.md
│ │ └── styles.js
│ ├── jqgrid
│ │ ├── grid.locale-cn.js
│ │ ├── jquery.jqGrid.min.js
│ │ ├── ui.jqgrid-bootstrap.css
│ │ ├── ui.jqgrid-bootstrap-ui.css
│ │ └── ui.jqgrid.css
│ ├── layer
│ │ ├── layer.js
│ │ ├── mobile
│ │ │ ├── layer.js
│ │ │ └── need
│ │ │ └── layer.css
│ │ └── skin
│ │ ├── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ └── moon
│ │ ├── default.png
│ │ └── style.css
│ ├── layui
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── icheck
│ │ │ │ ├── flat
│ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ ├── aero.css
│ │ │ │ │ ├── aero.png
│ │ │ │ │ ├── _all.css
│ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ ├── blue.css
│ │ │ │ │ ├── blue.png
│ │ │ │ │ ├── flat@2x.png
│ │ │ │ │ ├── flat.css
│ │ │ │ │ ├── flat.png
│ │ │ │ │ ├── green@2x.png
│ │ │ │ │ ├── green.css
│ │ │ │ │ ├── green.png
│ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ ├── grey.css
│ │ │ │ │ ├── grey.png
│ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ ├── orange.css
│ │ │ │ │ ├── orange.png
│ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ ├── pink.css
│ │ │ │ │ ├── pink.png
│ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ ├── purple.css
│ │ │ │ │ ├── purple.png
│ │ │ │ │ ├── red@2x.png
│ │ │ │ │ ├── red.css
│ │ │ │ │ ├── red.png
│ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ ├── yellow.css
│ │ │ │ │ └── yellow.png
│ │ │ │ ├── futurico
│ │ │ │ │ ├── futurico@2x.png
│ │ │ │ │ ├── futurico.css
│ │ │ │ │ └── futurico.png
│ │ │ │ ├── icheck.css
│ │ │ │ ├── line
│ │ │ │ │ ├── aero.css
│ │ │ │ │ ├── _all.css
│ │ │ │ │ ├── blue.css
│ │ │ │ │ ├── green.css
│ │ │ │ │ ├── grey.css
│ │ │ │ │ ├── line@2x.png
│ │ │ │ │ ├── line.css
│ │ │ │ │ ├── line.png
│ │ │ │ │ ├── orange.css
│ │ │ │ │ ├── pink.css
│ │ │ │ │ ├── purple.css
│ │ │ │ │ ├── red.css
│ │ │ │ │ └── yellow.css
│ │ │ │ ├── minimal
│ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ ├── aero.css
│ │ │ │ │ ├── aero.png
│ │ │ │ │ ├── _all.css
│ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ ├── blue.css
│ │ │ │ │ ├── blue.png
│ │ │ │ │ ├── green@2x.png
│ │ │ │ │ ├── green.css
│ │ │ │ │ ├── green.png
│ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ ├── grey.css
│ │ │ │ │ ├── grey.png
│ │ │ │ │ ├── minimal@2x.png
│ │ │ │ │ ├── minimal.css
│ │ │ │ │ ├── minimal.png
│ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ ├── orange.css
│ │ │ │ │ ├── orange.png
│ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ ├── pink.css
│ │ │ │ │ ├── pink.png
│ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ ├── purple.css
│ │ │ │ │ ├── purple.png
│ │ │ │ │ ├── red@2x.png
│ │ │ │ │ ├── red.css
│ │ │ │ │ ├── red.png
│ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ ├── yellow.css
│ │ │ │ │ └── yellow.png
│ │ │ │ ├── polaris
│ │ │ │ │ ├── polaris@2x.png
│ │ │ │ │ ├── polaris.css
│ │ │ │ │ └── polaris.png
│ │ │ │ └── square
│ │ │ │ ├── aero@2x.png
│ │ │ │ ├── aero.css
│ │ │ │ ├── aero.png
│ │ │ │ ├── _all.css
│ │ │ │ ├── blue@2x.png
│ │ │ │ ├── blue.css
│ │ │ │ ├── blue.png
│ │ │ │ ├── green@2x.png
│ │ │ │ ├── green.css
│ │ │ │ ├── green.png
│ │ │ │ ├── grey@2x.png
│ │ │ │ ├── grey.css
│ │ │ │ ├── grey.png
│ │ │ │ ├── orange@2x.png
│ │ │ │ ├── orange.css
│ │ │ │ ├── orange.png
│ │ │ │ ├── pink@2x.png
│ │ │ │ ├── pink.css
│ │ │ │ ├── pink.png
│ │ │ │ ├── purple@2x.png
│ │ │ │ ├── purple.css
│ │ │ │ ├── purple.png
│ │ │ │ ├── red@2x.png
│ │ │ │ ├── red.css
│ │ │ │ ├── red.png
│ │ │ │ ├── square@2x.png
│ │ │ │ ├── square.css
│ │ │ │ ├── square.png
│ │ │ │ ├── yellow@2x.png
│ │ │ │ ├── yellow.css
│ │ │ │ └── yellow.png
│ │ │ ├── laydate
│ │ │ │ ├── icon.png
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ └── iconfont.woff
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 2.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 3.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 4.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 5.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 6.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ ├── dest
│ │ │ │ ├── layui.all.js
│ │ │ │ └── layui.mod.js
│ │ │ ├── lib
│ │ │ │ └── jquery.js
│ │ │ └── modules
│ │ │ ├── code.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ ├── layui.js
│ │ └── modules
│ │ ├── icheck.js
│ │ └── pjax.js
│ └── ztree
│ ├── css
│ │ ├── awesomeStyle
│ │ │ ├── awesome.css
│ │ │ ├── awesome.less
│ │ │ ├── fa.less
│ │ │ └── img
│ │ │ └── loading.gif
│ │ ├── 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
│ └── jquery.ztree.all.min.js
└── WEB-INF
├── dispatcher-servlet.xml
├── page
│ ├── admin
│ │ ├── car.html
│ │ ├── fixall.html
│ │ ├── fix.html
│ │ ├── house.html
│ │ ├── record.html
│ │ ├── room.html
│ │ ├── tsall.html
│ │ ├── ts.html
│ │ └── userroom.html
│ └── sys
│ ├── config.html
│ ├── generator.html
│ ├── header.html
│ ├── log.html
│ ├── main.html
│ ├── menu.html
│ ├── role.html
│ └── user.html
├── velocity-toolbox.xml
└── web.xml
126 directories, 652 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论