流浪动物领养系统
.
├── adopt
│ ├── picture
│ ├── pom.xml
│ ├── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── ecjtu
│ │ │ │ ├── controller
│ │ │ │ │ ├── AdminController.java
│ │ │ │ │ ├── AdminLogin.java
│ │ │ │ │ ├── AdoptAnimalController.java
│ │ │ │ │ ├── AnswerController.java
│ │ │ │ │ ├── ApplyController.java
│ │ │ │ │ ├── BlogController.java
│ │ │ │ │ ├── CommentController.java
│ │ │ │ │ ├── FileLoad.java
│ │ │ │ │ ├── PetController.java
│ │ │ │ │ └── UsersController.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── Admin.java
│ │ │ │ │ ├── AdoptAnimal.java
│ │ │ │ │ ├── Answer.java
│ │ │ │ │ ├── Apply.java
│ │ │ │ │ ├── Blog.java
│ │ │ │ │ ├── Comment.java
│ │ │ │ │ ├── Pet.java
│ │ │ │ │ └── Users.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── AdminMapper.java
│ │ │ │ │ ├── AdoptAnimalMapper.java
│ │ │ │ │ ├── AnswerMapper.java
│ │ │ │ │ ├── ApplyMapper.java
│ │ │ │ │ ├── BlogMapper.java
│ │ │ │ │ ├── CommentMapper.java
│ │ │ │ │ ├── PetMapper.java
│ │ │ │ │ └── UsersMapper.java
│ │ │ │ ├── service
│ │ │ │ │ ├── AdminService.java
│ │ │ │ │ ├── AdoptAnimalService.java
│ │ │ │ │ ├── AnswerService.java
│ │ │ │ │ ├── ApplyService.java
│ │ │ │ │ ├── BlogService.java
│ │ │ │ │ ├── CommentService.java
│ │ │ │ │ ├── PetService.java
│ │ │ │ │ ├── UsersService.java
│ │ │ │ │ └── impl
│ │ │ │ │ ├── AdminServiceImpl.java
│ │ │ │ │ ├── AdoptAnimalServiceImpl.java
│ │ │ │ │ ├── AnswerServiceImpl.java
│ │ │ │ │ ├── ApplyServiceImpl.java
│ │ │ │ │ ├── BlogServiceImpl.java
│ │ │ │ │ ├── CommentServiceImpl.java
│ │ │ │ │ ├── PetServiceImpl.java
│ │ │ │ │ └── UserServiceImpl.java
│ │ │ │ └── util
│ │ │ │ ├── AnimalDate.java
│ │ │ │ ├── DataConvert.java
│ │ │ │ ├── MailUtil.java
│ │ │ │ ├── Message.java
│ │ │ │ ├── MyInterceptor.java
│ │ │ │ └── UUIDUtil.java
│ │ │ ├── resource
│ │ │ │ ├── MyBatis.xml
│ │ │ │ ├── Spring-dao.xml
│ │ │ │ ├── Spring-service.xml
│ │ │ │ ├── SpringMVC.xml
│ │ │ │ ├── Sprng-tx.xml
│ │ │ │ ├── db.properties
│ │ │ │ ├── log4j.properties
│ │ │ │ └── mapper
│ │ │ │ ├── AdminMapper.xml
│ │ │ │ ├── AdoptAnimalMapper.xml
│ │ │ │ ├── AnswerMapper.xml
│ │ │ │ ├── ApplyMapper.xml
│ │ │ │ ├── BlogMapper.xml
│ │ │ │ ├── CommentMapper.xml
│ │ │ │ ├── PetMapper.xml
│ │ │ │ └── UserMapper.xml
│ │ │ └── webapp
│ │ │ ├── JQuery
│ │ │ │ ├── jquery-3.4.1.js
│ │ │ │ └── jquery-3.4.1.min.js
│ │ │ ├── WEB-INF
│ │ │ │ ├── Sitemesh3.xml
│ │ │ │ └── web.xml
│ │ │ ├── animal
│ │ │ │ ├── about.jsp
│ │ │ │ ├── admin
│ │ │ │ │ ├── admin.jsp
│ │ │ │ │ ├── adopt.jsp
│ │ │ │ │ ├── agree.jsp
│ │ │ │ │ ├── apply.jsp
│ │ │ │ │ ├── blog.jsp
│ │ │ │ │ ├── comment.jsp
│ │ │ │ │ ├── disAgree.jsp
│ │ │ │ │ ├── login.jsp
│ │ │ │ │ ├── pet.jsp
│ │ │ │ │ └── users.jsp
│ │ │ │ ├── error.jsp
│ │ │ │ ├── index.jsp
│ │ │ │ ├── navigation.jsp
│ │ │ │ ├── personal-info.jsp
│ │ │ │ ├── service.jsp
│ │ │ │ ├── show.jsp
│ │ │ │ ├── team.jsp
│ │ │ │ ├── teamBlog.jsp
│ │ │ │ └── test.jsp
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── bootstrap-overrides.css
│ │ │ │ │ ├── bootstrap-responsive.css
│ │ │ │ │ └── bootstrap.css
│ │ │ │ ├── css
│ │ │ │ │ ├── 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
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── npm.js
│ │ │ ├── css
│ │ │ │ ├── base.css
│ │ │ │ ├── elements.css
│ │ │ │ ├── error.css
│ │ │ │ ├── font-awesome.css
│ │ │ │ ├── icons.css
│ │ │ │ ├── jquery.slideBox.css
│ │ │ │ ├── layout.css
│ │ │ │ ├── login.css
│ │ │ │ ├── owl.carousel.css
│ │ │ │ ├── personal-info.css
│ │ │ │ ├── show.css
│ │ │ │ ├── simplelightbox.min.css
│ │ │ │ └── style.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.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ ├── html
│ │ │ │ ├── about.html
│ │ │ │ ├── admin
│ │ │ │ │ ├── admin.html
│ │ │ │ │ ├── blog.html
│ │ │ │ │ ├── comment.html
│ │ │ │ │ ├── pet.html
│ │ │ │ │ ├── t_adopt.html
│ │ │ │ │ ├── test.html
│ │ │ │ │ └── user.html
│ │ │ │ ├── blog.html
│ │ │ │ ├── error.html
│ │ │ │ ├── index.html
│ │ │ │ ├── personal-info.html
│ │ │ │ ├── services.html
│ │ │ │ ├── show.html
│ │ │ │ └── team.html
│ │ │ ├── images
│ │ │ │ ├── 07b78b94-e7db-4d04-a677-abfff13d75d5.jpg
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 308dfb02-f92f-4e69-ba5b-8f6afb4ef071.jpg
│ │ │ │ ├── 3d893f72-9653-400b-9d48-4e823d814ce1.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 459b0ae2-6247-4137-a922-db15173ae021.jpg
│ │ │ │ ├── 5880b68e-b707-4ec7-9afb-6fd3baebe969.jpg
│ │ │ │ ├── 5ea1639b-137a-4d8b-8206-eb6279430b35.jpg
│ │ │ │ ├── 627cbb23-2497-4c7d-a72c-41ae81217786.jpg
│ │ │ │ ├── 667249df-f526-41a4-89f3-b51bc327cba1.jpg
│ │ │ │ ├── 7922924c-57a5-4edf-b422-c58c6fea5a2a.jpg
│ │ │ │ ├── 79caeb48-4bd2-4d32-819b-870831568c05.jpg
│ │ │ │ ├── 7db91b4a-7c3b-4c56-80de-d13551b2a010.jpeg
│ │ │ │ ├── 82f54821-3e3c-4cf8-8cd7-027deb699d0c.jpg
│ │ │ │ ├── 84b3f2a4-49e4-4612-91c6-fe186fab3d5b.jpg
│ │ │ │ ├── 8bc17cae-f13c-4888-ac28-b9b50aae555f.jpg
│ │ │ │ ├── 97f0f145-411d-47cd-82e0-5e2b76b6da5a.jpg
│ │ │ │ ├── P7.jpg
│ │ │ │ ├── P8.jpg
│ │ │ │ ├── b32aa79e-1a14-46a6-83df-c581cce69eff.jpg
│ │ │ │ ├── e85ff25e-efd0-4fff-8c47-a06e7616f189.jpg
│ │ │ │ ├── ecfd94f8-9e66-47f7-897a-fb41f5190794.jpg
│ │ │ │ ├── error
│ │ │ │ │ ├── banner.png
│ │ │ │ │ └── cut.jpg
│ │ │ │ ├── f1.jpg
│ │ │ │ ├── f2.jpg
│ │ │ │ ├── f3.jpg
│ │ │ │ ├── f4.jpg
│ │ │ │ ├── f5.jpg
│ │ │ │ ├── f6.jpg
│ │ │ │ ├── f7.jpg
│ │ │ │ ├── fdf3cfb2-9c9c-4d7b-92db-593223a21bf5.png
│ │ │ │ ├── login
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── passcode.jpg
│ │ │ │ │ └── tmbg-white.png
│ │ │ │ └── u=2609109804,2870642995&fm=26&gp=0.jpg
│ │ │ ├── index.jsp
│ │ │ └── js
│ │ │ ├── SmoothScroll.min.js
│ │ │ ├── demo.js
│ │ │ ├── easing.js
│ │ │ ├── gVerify.js
│ │ │ ├── houtai
│ │ │ │ ├── css
│ │ │ │ │ ├── boot-crm.css
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ ├── font-awesome.min.css
│ │ │ │ │ ├── metisMenu.min.css
│ │ │ │ │ ├── rightbg.jpg
│ │ │ │ │ ├── sb-admin-2.css
│ │ │ │ │ └── style.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
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── dataTables.bootstrap.min.js
│ │ │ │ ├── jquery-1.11.3.min.js
│ │ │ │ ├── jquery.dataTables.min.js
│ │ │ │ ├── metisMenu.min.js
│ │ │ │ └── sb-admin-2.js
│ │ │ ├── jquery-2.2.3.min.js
│ │ │ ├── jquery.comment.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.slideBox.min.js
│ │ │ ├── move-top.js
│ │ │ ├── owl.carousel.js
│ │ │ ├── responsiveslides.min.js
│ │ │ └── simple-lightbox.min.js
│ │ └── test
│ │ └── java
│ │ ├── AdminTest.java
│ │ ├── AdoptAnimalTest.java
│ │ ├── BlogTest.java
│ │ ├── CommentTest.java
│ │ ├── UserTest.java
│ │ └── petTest.java
│ └── target
│ ├── classes
│ │ └── com
│ │ └── ecjtu
│ │ ├── controller
│ │ │ ├── AdminController.class
│ │ │ ├── AdminLogin.class
│ │ │ ├── AdoptAnimalController.class
│ │ │ ├── AnswerController.class
│ │ │ ├── ApplyController.class
│ │ │ ├── BlogController.class
│ │ │ ├── CommentController.class
│ │ │ ├── FileLoad.class
│ │ │ ├── PetController.class
│ │ │ └── UsersController.class
│ │ ├── entity
│ │ │ ├── Admin.class
│ │ │ ├── AdoptAnimal.class
│ │ │ ├── Answer.class
│ │ │ ├── Apply.class
│ │ │ ├── Blog.class
│ │ │ ├── Comment.class
│ │ │ ├── Pet.class
│ │ │ └── Users.class
│ │ ├── mapper
│ │ │ ├── AdminMapper.class
│ │ │ ├── AdoptAnimalMapper.class
│ │ │ ├── AnswerMapper.class
│ │ │ ├── ApplyMapper.class
│ │ │ ├── BlogMapper.class
│ │ │ ├── CommentMapper.class
│ │ │ ├── PetMapper.class
│ │ │ └── UsersMapper.class
│ │ ├── service
│ │ │ ├── AdminService.class
│ │ │ ├── AdoptAnimalService.class
│ │ │ ├── AnswerService.class
│ │ │ ├── ApplyService.class
│ │ │ ├── BlogService.class
│ │ │ ├── CommentService.class
│ │ │ ├── PetService.class
│ │ │ ├── UsersService.class
│ │ │ └── impl
│ │ │ ├── AdminServiceImpl.class
│ │ │ ├── AdoptAnimalServiceImpl.class
│ │ │ ├── AnswerServiceImpl.class
│ │ │ ├── ApplyServiceImpl.class
│ │ │ ├── BlogServiceImpl.class
│ │ │ ├── CommentServiceImpl.class
│ │ │ ├── PetServiceImpl.class
│ │ │ └── UserServiceImpl.class
│ │ └── util
│ │ ├── AnimalDate.class
│ │ ├── DataConvert.class
│ │ ├── MailUtil$1.class
│ │ ├── MailUtil.class
│ │ ├── Message.class
│ │ ├── MyInterceptor.class
│ │ └── UUIDUtil.class
│ └── test-classes
│ ├── AdminTest.class
│ ├── AdoptAnimalTest.class
│ ├── BlogTest.class
│ ├── CommentTest.class
│ ├── UserTest.class
│ └── petTest.class
└── 流浪动物领养系统.rar
50 directories, 283 files
评论