├── .gitignore ├── picture ├── E-R图.jpg ├── 系统流程图.jpg ├── picture1.png ├── picture2.png ├── picture3.png ├── picture4.png ├── picture5.png ├── picture6.png ├── picture7.png ├── picture8.png ├── picture9.png ├── picture10.png ├── picture11.png ├── picture12.png ├── picture13.png ├── picture14.png ├── picture15.png ├── picture16.png └── picture17.png ├── src └── main │ ├── webapp │ ├── index.jsp │ ├── favicon.ico │ ├── static │ │ ├── css │ │ │ ├── admin │ │ │ │ ├── style.css │ │ │ │ ├── boot-crm.css │ │ │ │ ├── rightbg.jpg │ │ │ │ ├── metisMenu.min.css │ │ │ │ └── sb-admin-2.css │ │ │ └── user │ │ │ │ ├── login.css │ │ │ │ ├── simplelightbox.min.css │ │ │ │ ├── jquery.slideBox.css │ │ │ │ ├── personal-info.css │ │ │ │ ├── icons.css │ │ │ │ ├── show.css │ │ │ │ └── error.css │ │ ├── fonts │ │ │ ├── user │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── 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 │ │ │ └── admin │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── bootstrap │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ └── npm.js │ │ ├── html │ │ │ ├── admin │ │ │ │ ├── test.html │ │ │ │ └── t_adopt.html │ │ │ └── user │ │ │ │ ├── error.html │ │ │ │ ├── personal-info.html │ │ │ │ ├── services.html │ │ │ │ ├── team.html │ │ │ │ ├── show.html │ │ │ │ └── blog.html │ │ └── js │ │ │ ├── user │ │ │ ├── move-top.js │ │ │ ├── demo.js │ │ │ ├── responsiveslides.min.js │ │ │ ├── gVerify.js │ │ │ ├── jquery.comment.js │ │ │ ├── easing.js │ │ │ ├── jquery.slideBox.min.js │ │ │ └── simple-lightbox.min.js │ │ │ └── admin │ │ │ ├── sb-admin-2.js │ │ │ ├── metisMenu.min.js │ │ │ └── dataTables.bootstrap.min.js │ └── WEB-INF │ │ └── web.xml │ ├── resources │ ├── log4j.properties │ ├── mapper │ │ ├── BlogMapper.xml │ │ ├── PetMapper.xml │ │ ├── AdoptAnimalMapper.xml │ │ ├── CommentMapper.xml │ │ ├── AnswerMapper.xml │ │ ├── ApplyMapper.xml │ │ ├── UserMapper.xml │ │ └── AdminMapper.xml │ ├── database.properties │ ├── springmvc-servlet.xml │ └── applicationContext.xml │ └── java │ └── club │ ├── dao │ ├── UserMapper.java │ ├── PetMapper.java │ ├── BlogMapper.java │ ├── AdminMapper.java │ ├── ApplyMapper.java │ ├── AnswerMapper.java │ ├── CommentMapper.java │ └── AdoptAnimalMapper.java │ ├── service │ ├── ApplyService.java │ ├── AnswerService.java │ ├── BlogService.java │ ├── PetService.java │ ├── AdoptAnimalService.java │ ├── AdminService.java │ ├── UserService.java │ ├── CommentService.java │ └── impl │ │ ├── ApplyServiceImpl.java │ │ ├── BlogServiceImpl.java │ │ ├── PetServiceImpl.java │ │ ├── AdminServiceImpl.java │ │ ├── AnswerServiceImpl.java │ │ ├── UserServiceImpl.java │ │ ├── AdoptAnimalServiceImpl.java │ │ └── CommentServiceImpl.java │ ├── pojo │ ├── Blog.java │ ├── Apply.java │ ├── User.java │ ├── AdoptAnimal.java │ ├── Admins.java │ ├── Answer.java │ ├── Comment.java │ └── Pet.java │ ├── util │ └── Message.java │ └── controller │ ├── AnswerController.java │ ├── BlogController.java │ ├── FileLoad.java │ ├── ApplyController.java │ ├── PetController.java │ ├── AdoptAnimalController.java │ ├── CommentController.java │ ├── UserController.java │ └── AdminController.java ├── .gitattributes ├── README.md └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/.gitignore -------------------------------------------------------------------------------- /picture/E-R图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/E-R图.jpg -------------------------------------------------------------------------------- /picture/系统流程图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/系统流程图.jpg -------------------------------------------------------------------------------- /picture/picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture1.png -------------------------------------------------------------------------------- /picture/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture2.png -------------------------------------------------------------------------------- /picture/picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture3.png -------------------------------------------------------------------------------- /picture/picture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture4.png -------------------------------------------------------------------------------- /picture/picture5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture5.png -------------------------------------------------------------------------------- /picture/picture6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture6.png -------------------------------------------------------------------------------- /picture/picture7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture7.png -------------------------------------------------------------------------------- /picture/picture8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture8.png -------------------------------------------------------------------------------- /picture/picture9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giteecode/adopt-public/HEAD/picture/picture9.png -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | 2 |
3 |请 返回首页 或发送邮件 support@w3l.com 联系我们
25 |Copyright © 2017.Company name All rights reserved.
26 |
"+obj.replyName+"
" 9 | +""+obj.content+"
"+reply.time+"
更新头像
43 | 44 |个人信息修改
50 | 51 |Services Overview
68 |Our Team
61 | 62 |Nathan Tim
69 |Adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem
70 |Keith Ryan
79 |Adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem
80 |Irene Jan
91 |Adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem
92 |Angela Leah
101 |Adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem
102 |126 | Location
127 |345 Setwant natrer,
128 |Metropolitan, Italy.
129 |132 | PHONE
133 |+1(401) 1234 567.
134 |+1(804) 4261 150.
135 |138 | E-MAIL
139 |140 | Example1@gmail.com 141 |
142 |143 | Example2@gmail.com 144 |
145 |待领养的动物
19 |22 |
23 | 
24 | 
25 | 
26 |
27 |37 |
123123
38 |41 |
2019/09/23
42 |47 |
波斯猫
48 |51 |
雄性
52 |57 |
好动
58 |大家好,我是Salon。我的特徵是一豎一摺的耳朵和會說話的眼神。我非常有活力,最愛和人玩耍逛街做運動。我很喜歡認識朋友,我有自信能和大部份狗狗友好相處。 64 | 我已經準備好當你的好朋友,你能帶我回家給我永遠的溫暖嗎?
80 | 请填写个人信息 81 |
82 |Our Blog
58 | 59 |Jan
63 | 18 64 |67 | eoquie int temporant 2018 68 |
69 |70 | Cat Life 71 |
72 |Feb
78 | 22 79 |82 | eoquie int temporant 2018 83 |
84 |85 | Cat Life 86 |
87 |Feb
93 | 15 94 |97 | eoquie int temporant 2018 98 |
99 |100 | Cat Life 101 |
102 |Jan
112 | 26 113 |116 | eoquie int temporant 2018 117 |
118 |119 | Cat Life 120 |
121 |Feb
127 | 06 128 |131 | eoquie int temporant 2018 132 |
133 |134 | Cat Life 135 |
136 |Feb
142 | 12 143 |146 | eoquie int temporant 2018 147 |
148 |149 | Cat Life 150 |
151 |Cat Life
170 |Lorem ipsum dolor sit amet, consectetur adipiscing elit.
172 |Duis sit amet nisi quis leo fermentum vestibulum vitae eget augue. Nulla quam nunc, vulputate id urna at, tempor tincidunt 173 | metus. Sed feugiat quam nec mauris mattis malesuada.
174 |