├── README.md ├── images └── data │ └── springboot-squirrel │ └── upload │ └── images │ ├── 01974fb4-da95-4191-8c80-e89db4a4e7a3.jpg │ ├── 0a281a3b-f4e1-445b-b7a0-3f7a829849bc.jpg │ ├── 24e34c65-1ff9-4eba-b97a-7cd8d8b4ecb1.jpg │ ├── 26c2c89b-9312-4759-88a0-7f73f86c549d.jpg │ ├── 27c63995-9ff9-453d-b24f-d9aa95dcc138.jpg │ ├── 2952fe1e-0633-4f9d-9249-f999603235f5.jpg │ ├── 2f3fc053-090d-49de-a184-39e78cb4fc7e.jpg │ ├── 3497646f-b534-4369-9e5a-e38b2ec2ced5.jpg │ ├── 370298f4-e81c-46b6-9dbd-83118922bb22.jpg │ ├── 3c95fa0d-d5e3-40f7-826f-cafe6e6af740.jpg │ ├── 4859432c-5955-411b-bdaa-d65275a9a61a.jpg │ ├── 4b85e359-6fc8-4c12-93b9-edec64320f67.jpg │ ├── 4ff2f2e2-5b3e-4ce6-9161-fb09cffea277.jpg │ ├── 58a655a4-3bb1-4d63-87c1-257865393741.jpg │ ├── 5aceed48-21f6-4aa8-9cfa-6bb831694c3a.jpg │ ├── 612b5f9a-1017-49e3-ab39-878199a8b63c.jpg │ ├── 68bac661-f69f-4ec5-8f21-f92ec1970547.jpg │ ├── 6c8a2d88-ab90-488e-a468-d379c730bd46.jpg │ ├── 75131adc-b3a8-495b-94a5-c7b144c41a0e.jpg │ ├── 75599f16-ef35-4013-8c71-9f8c1682ad64.jpg │ ├── 786c6d89-b27a-4a41-8f96-352aed2a9e6c.jpg │ ├── 816c281c-3c37-4e93-beb9-074276838bb5.jpg │ ├── 818c7c27-cc68-4471-8431-5b1810ea0952.jpg │ ├── 8222a2f2-6287-4530-a399-da7696b73fdf.jpg │ ├── 83e6a0be-cf28-4d74-8db6-ed1e3bafdec0.jpg │ ├── 85d132d0-bb61-4519-a08e-ec29937e4426.jpg │ ├── 9d0782df-277f-45e6-b3b4-c424d688e312.jpg │ ├── a90f891e-9b74-4f92-a800-03ef83c0a69c.jpg │ ├── ae2bdee2-0abb-428d-961f-eadf9905bf4c.jpg │ ├── bec28d84-7d5e-4d50-8bb2-91409de00859.jpg │ ├── c378a8bb-0561-42bb-b77e-c89ed375efca.jpg │ ├── d01acfd0-3b87-4983-b46d-d2864e722437.jpg │ ├── d8ca0740-bdf3-416b-8557-8384e7299924.jpg │ ├── dee36400-df6a-46ac-96df-d71a7c42f328.jpg │ ├── e26183d0-244c-4da4-86dd-387d0ef8dfeb.jpg │ ├── e80e60a1-859c-4277-9a6a-c6bfe95dcf7a.jpg │ ├── e9562bb5-6196-438e-a40d-8133f33cfaff.jpg │ ├── f2857094-1642-4d22-88b8-d06c290944fe.jpg │ ├── f34e49f8-bbef-4e1d-8138-e57aa97e408a.jpg │ ├── f4ccf238-e458-4dda-9ed8-88bca2d42309.jpg │ ├── f80708c6-e242-465d-9f0e-18f79f0d0b00.jpg │ └── f845fd90-db8a-4701-aa22-0968b2694fb0.jpg ├── mvnw ├── mvnw.cmd ├── pom.xml ├── preview ├── 首页1-1.png └── 首页1-2.png ├── sql └── db_springboot_squirrel.sql └── src ├── main ├── java │ └── com │ │ └── squirrel │ │ ├── Application.java │ │ ├── common │ │ └── GgeeConst.java │ │ ├── config │ │ ├── DruidConfig.java │ │ └── MyWebMvcConfigurerAdapter.java │ │ ├── controller │ │ ├── CatelogController.java │ │ ├── CommentsController.java │ │ ├── GoodsController.java │ │ ├── MainController.java │ │ ├── ManageController.java │ │ └── UserController.java │ │ ├── dao │ │ ├── CatelogMapper.java │ │ ├── CommentsMapper.java │ │ ├── GoodsMapper.java │ │ ├── ImageMapper.java │ │ ├── NoticeMapper.java │ │ ├── ReplyMapper.java │ │ └── UserMapper.java │ │ ├── dto │ │ └── AjaxResult.java │ │ ├── exception │ │ ├── GgeeWebError.java │ │ └── GgeeWebException.java │ │ ├── pojo │ │ ├── Catelog.java │ │ ├── Comments.java │ │ ├── Goods.java │ │ ├── GoodsExtend.java │ │ ├── Image.java │ │ ├── Notice.java │ │ ├── Reply.java │ │ └── User.java │ │ ├── service │ │ ├── CatelogService.java │ │ ├── CommentsService.java │ │ ├── GoodsService.java │ │ ├── ImageService.java │ │ ├── UserService.java │ │ └── impl │ │ │ ├── CatelogServiceImpl.java │ │ │ ├── CommentsServiceImpl.java │ │ │ ├── GoodsServiceImpl.java │ │ │ ├── ImageServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── util │ │ ├── DateUtil.java │ │ ├── MD5.java │ │ ├── UserGrid.java │ │ └── WriteExcel.java └── resources │ ├── application-dev.properties │ ├── application-prod.properties │ ├── application.properties │ ├── mapper │ ├── CatelogMapper.xml │ ├── CommentsMapper.xml │ ├── GoodsMapper.xml │ ├── ImageMapper.xml │ ├── NoticeMapper.xml │ ├── ReplyMapper.xml │ └── UserMapper.xml │ ├── static │ ├── css │ │ ├── base.css │ │ ├── bootstrap-datetimepicker │ │ │ └── bootstrap-datetimepicker.min.css │ │ ├── bootstrap │ │ │ └── bootstrap.min.css │ │ ├── detail.css │ │ ├── emoji.css │ │ ├── fileinput.min.css │ │ ├── font-awesome.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── index.css │ │ ├── manage │ │ │ ├── manage-app.css │ │ │ └── manage-login.css │ │ ├── materialize-icon.css │ │ ├── style.css │ │ ├── toastr │ │ │ └── toastr.min.css │ │ ├── user.css │ │ └── userhome.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 │ ├── img │ │ ├── 404.jpg │ │ ├── book.png │ │ ├── commodity.png │ │ ├── digital.png │ │ ├── file-1493726053986.JPG │ │ ├── gdufe_bg.jpg │ │ ├── gdufe_logo.png │ │ ├── gdufe_shop_logo.png │ │ ├── gdufe_title.png │ │ ├── index.png │ │ ├── loading-sm.gif │ │ ├── loading.gif │ │ ├── makeup.png │ │ ├── manage-logo.png │ │ ├── p_logo.jpg │ │ ├── photo.jpg │ │ ├── photo1.jpg │ │ ├── photo2.jpg │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── photo5.jpg │ │ ├── ride.png │ │ ├── smallthing.png │ │ ├── sport.png │ │ ├── tfans.jpg │ │ └── title.png │ └── js │ │ ├── app.js │ │ ├── bootstrap-datetimepicker │ │ ├── bootstrap-datetimepicker.min.js │ │ └── locales │ │ │ └── bootstrap-datetimepicker.zh-CN.js │ │ ├── bootstrap │ │ └── bootstrap.min.js │ │ ├── fileinput.min.js │ │ ├── goods │ │ └── detailGoods.js │ │ ├── index.bundle.js │ │ ├── jquery-3.2.1.min.js │ │ ├── jquery.bootgrid.min.js │ │ ├── jquery │ │ └── jquery.cookie.min.js │ │ ├── manage │ │ ├── manage-app.js │ │ ├── manage-goodsList.js │ │ ├── manage-login.js │ │ └── manage-userList.js │ │ ├── materialize.min.js │ │ ├── toastr │ │ └── toastr.min.js │ │ └── zh.js │ └── templates │ ├── 404.html │ ├── error │ └── 404.html │ ├── goods │ ├── catelogGoods.html │ ├── detailGoods.html │ ├── editGoods.html │ ├── homeGoods.html │ ├── pubGoods.html │ └── searchGoods.html │ ├── index.html │ ├── manage │ ├── manage-goodsList.html │ ├── manage-login.html │ └── manage-userList.html │ └── user │ ├── basic.html │ ├── goods.html │ └── home.html └── test └── java └── com └── squirrel ├── ApplicationTests.java └── service ├── CatelogServiceTest.java ├── GoodsServiceTest.java ├── ImageServiceTest.java └── UserServiceTest.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/README.md -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/01974fb4-da95-4191-8c80-e89db4a4e7a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/01974fb4-da95-4191-8c80-e89db4a4e7a3.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/0a281a3b-f4e1-445b-b7a0-3f7a829849bc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/0a281a3b-f4e1-445b-b7a0-3f7a829849bc.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/24e34c65-1ff9-4eba-b97a-7cd8d8b4ecb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/24e34c65-1ff9-4eba-b97a-7cd8d8b4ecb1.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/26c2c89b-9312-4759-88a0-7f73f86c549d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/26c2c89b-9312-4759-88a0-7f73f86c549d.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/27c63995-9ff9-453d-b24f-d9aa95dcc138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/27c63995-9ff9-453d-b24f-d9aa95dcc138.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/2952fe1e-0633-4f9d-9249-f999603235f5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/2952fe1e-0633-4f9d-9249-f999603235f5.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/2f3fc053-090d-49de-a184-39e78cb4fc7e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/2f3fc053-090d-49de-a184-39e78cb4fc7e.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/3497646f-b534-4369-9e5a-e38b2ec2ced5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/3497646f-b534-4369-9e5a-e38b2ec2ced5.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/370298f4-e81c-46b6-9dbd-83118922bb22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/370298f4-e81c-46b6-9dbd-83118922bb22.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/3c95fa0d-d5e3-40f7-826f-cafe6e6af740.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/3c95fa0d-d5e3-40f7-826f-cafe6e6af740.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/4859432c-5955-411b-bdaa-d65275a9a61a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/4859432c-5955-411b-bdaa-d65275a9a61a.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/4b85e359-6fc8-4c12-93b9-edec64320f67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/4b85e359-6fc8-4c12-93b9-edec64320f67.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/4ff2f2e2-5b3e-4ce6-9161-fb09cffea277.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/4ff2f2e2-5b3e-4ce6-9161-fb09cffea277.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/58a655a4-3bb1-4d63-87c1-257865393741.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/58a655a4-3bb1-4d63-87c1-257865393741.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/5aceed48-21f6-4aa8-9cfa-6bb831694c3a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/5aceed48-21f6-4aa8-9cfa-6bb831694c3a.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/612b5f9a-1017-49e3-ab39-878199a8b63c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/612b5f9a-1017-49e3-ab39-878199a8b63c.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/68bac661-f69f-4ec5-8f21-f92ec1970547.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/68bac661-f69f-4ec5-8f21-f92ec1970547.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/6c8a2d88-ab90-488e-a468-d379c730bd46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/6c8a2d88-ab90-488e-a468-d379c730bd46.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/75131adc-b3a8-495b-94a5-c7b144c41a0e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/75131adc-b3a8-495b-94a5-c7b144c41a0e.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/75599f16-ef35-4013-8c71-9f8c1682ad64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/75599f16-ef35-4013-8c71-9f8c1682ad64.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/786c6d89-b27a-4a41-8f96-352aed2a9e6c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/786c6d89-b27a-4a41-8f96-352aed2a9e6c.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/816c281c-3c37-4e93-beb9-074276838bb5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/816c281c-3c37-4e93-beb9-074276838bb5.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/818c7c27-cc68-4471-8431-5b1810ea0952.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/818c7c27-cc68-4471-8431-5b1810ea0952.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/8222a2f2-6287-4530-a399-da7696b73fdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/8222a2f2-6287-4530-a399-da7696b73fdf.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/83e6a0be-cf28-4d74-8db6-ed1e3bafdec0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/83e6a0be-cf28-4d74-8db6-ed1e3bafdec0.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/85d132d0-bb61-4519-a08e-ec29937e4426.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/85d132d0-bb61-4519-a08e-ec29937e4426.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/9d0782df-277f-45e6-b3b4-c424d688e312.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/9d0782df-277f-45e6-b3b4-c424d688e312.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/a90f891e-9b74-4f92-a800-03ef83c0a69c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/a90f891e-9b74-4f92-a800-03ef83c0a69c.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/ae2bdee2-0abb-428d-961f-eadf9905bf4c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/ae2bdee2-0abb-428d-961f-eadf9905bf4c.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/bec28d84-7d5e-4d50-8bb2-91409de00859.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/bec28d84-7d5e-4d50-8bb2-91409de00859.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/c378a8bb-0561-42bb-b77e-c89ed375efca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/c378a8bb-0561-42bb-b77e-c89ed375efca.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/d01acfd0-3b87-4983-b46d-d2864e722437.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/d01acfd0-3b87-4983-b46d-d2864e722437.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/d8ca0740-bdf3-416b-8557-8384e7299924.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/d8ca0740-bdf3-416b-8557-8384e7299924.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/dee36400-df6a-46ac-96df-d71a7c42f328.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/dee36400-df6a-46ac-96df-d71a7c42f328.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/e26183d0-244c-4da4-86dd-387d0ef8dfeb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/e26183d0-244c-4da4-86dd-387d0ef8dfeb.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/e80e60a1-859c-4277-9a6a-c6bfe95dcf7a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/e80e60a1-859c-4277-9a6a-c6bfe95dcf7a.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/e9562bb5-6196-438e-a40d-8133f33cfaff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/e9562bb5-6196-438e-a40d-8133f33cfaff.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/f2857094-1642-4d22-88b8-d06c290944fe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/f2857094-1642-4d22-88b8-d06c290944fe.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/f34e49f8-bbef-4e1d-8138-e57aa97e408a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/f34e49f8-bbef-4e1d-8138-e57aa97e408a.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/f4ccf238-e458-4dda-9ed8-88bca2d42309.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/f4ccf238-e458-4dda-9ed8-88bca2d42309.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/f80708c6-e242-465d-9f0e-18f79f0d0b00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/f80708c6-e242-465d-9f0e-18f79f0d0b00.jpg -------------------------------------------------------------------------------- /images/data/springboot-squirrel/upload/images/f845fd90-db8a-4701-aa22-0968b2694fb0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/images/data/springboot-squirrel/upload/images/f845fd90-db8a-4701-aa22-0968b2694fb0.jpg -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/pom.xml -------------------------------------------------------------------------------- /preview/首页1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/preview/首页1-1.png -------------------------------------------------------------------------------- /preview/首页1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/preview/首页1-2.png -------------------------------------------------------------------------------- /sql/db_springboot_squirrel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/sql/db_springboot_squirrel.sql -------------------------------------------------------------------------------- /src/main/java/com/squirrel/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/Application.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/common/GgeeConst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/common/GgeeConst.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/config/DruidConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/config/DruidConfig.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/config/MyWebMvcConfigurerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/config/MyWebMvcConfigurerAdapter.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/controller/CatelogController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/controller/CatelogController.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/controller/CommentsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/controller/CommentsController.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/controller/GoodsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/controller/GoodsController.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/controller/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/controller/MainController.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/controller/ManageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/controller/ManageController.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/controller/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/CatelogMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/CatelogMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/CommentsMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/CommentsMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/GoodsMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/GoodsMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/ImageMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/ImageMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/NoticeMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/NoticeMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/ReplyMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/ReplyMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dao/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dao/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/dto/AjaxResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/dto/AjaxResult.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/exception/GgeeWebError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/exception/GgeeWebError.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/exception/GgeeWebException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/exception/GgeeWebException.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/Catelog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/Catelog.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/Comments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/Comments.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/Goods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/Goods.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/GoodsExtend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/GoodsExtend.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/Image.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/Image.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/Notice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/Notice.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/Reply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/Reply.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/pojo/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/pojo/User.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/CatelogService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/CatelogService.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/CommentsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/CommentsService.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/GoodsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/GoodsService.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/ImageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/ImageService.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/impl/CatelogServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/impl/CatelogServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/impl/CommentsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/impl/CommentsServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/impl/GoodsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/impl/GoodsServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/impl/ImageServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/impl/ImageServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/util/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/util/DateUtil.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/util/MD5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/util/MD5.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/util/UserGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/util/UserGrid.java -------------------------------------------------------------------------------- /src/main/java/com/squirrel/util/WriteExcel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/java/com/squirrel/util/WriteExcel.java -------------------------------------------------------------------------------- /src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/mapper/CatelogMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/CatelogMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/CommentsMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/CommentsMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/GoodsMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/GoodsMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ImageMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/ImageMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/NoticeMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/NoticeMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ReplyMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/ReplyMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/mapper/UserMapper.xml -------------------------------------------------------------------------------- /src/main/resources/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/base.css -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/detail.css -------------------------------------------------------------------------------- /src/main/resources/static/css/emoji.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/emoji.css -------------------------------------------------------------------------------- /src/main/resources/static/css/fileinput.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/fileinput.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/css/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/resources/static/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/css/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/index.css -------------------------------------------------------------------------------- /src/main/resources/static/css/manage/manage-app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/manage/manage-app.css -------------------------------------------------------------------------------- /src/main/resources/static/css/manage/manage-login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/manage/manage-login.css -------------------------------------------------------------------------------- /src/main/resources/static/css/materialize-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/materialize-icon.css -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /src/main/resources/static/css/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/toastr/toastr.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/user.css -------------------------------------------------------------------------------- /src/main/resources/static/css/userhome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/css/userhome.css -------------------------------------------------------------------------------- /src/main/resources/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/img/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/404.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/book.png -------------------------------------------------------------------------------- /src/main/resources/static/img/commodity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/commodity.png -------------------------------------------------------------------------------- /src/main/resources/static/img/digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/digital.png -------------------------------------------------------------------------------- /src/main/resources/static/img/file-1493726053986.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/file-1493726053986.JPG -------------------------------------------------------------------------------- /src/main/resources/static/img/gdufe_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/gdufe_bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/gdufe_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/gdufe_logo.png -------------------------------------------------------------------------------- /src/main/resources/static/img/gdufe_shop_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/gdufe_shop_logo.png -------------------------------------------------------------------------------- /src/main/resources/static/img/gdufe_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/gdufe_title.png -------------------------------------------------------------------------------- /src/main/resources/static/img/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/index.png -------------------------------------------------------------------------------- /src/main/resources/static/img/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/loading-sm.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/loading.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/makeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/makeup.png -------------------------------------------------------------------------------- /src/main/resources/static/img/manage-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/manage-logo.png -------------------------------------------------------------------------------- /src/main/resources/static/img/p_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/p_logo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/photo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/photo1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/photo2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/photo3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/photo4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/photo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/photo5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/ride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/ride.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/smallthing.png -------------------------------------------------------------------------------- /src/main/resources/static/img/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/sport.png -------------------------------------------------------------------------------- /src/main/resources/static/img/tfans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/tfans.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/img/title.png -------------------------------------------------------------------------------- /src/main/resources/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/app.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap-datetimepicker/locales/bootstrap-datetimepicker.zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/bootstrap-datetimepicker/locales/bootstrap-datetimepicker.zh-CN.js -------------------------------------------------------------------------------- /src/main/resources/static/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/fileinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/fileinput.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/goods/detailGoods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/goods/detailGoods.js -------------------------------------------------------------------------------- /src/main/resources/static/js/index.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/index.bundle.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.bootgrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/jquery.bootgrid.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery/jquery.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/jquery/jquery.cookie.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/manage/manage-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/manage/manage-app.js -------------------------------------------------------------------------------- /src/main/resources/static/js/manage/manage-goodsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/manage/manage-goodsList.js -------------------------------------------------------------------------------- /src/main/resources/static/js/manage/manage-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/manage/manage-login.js -------------------------------------------------------------------------------- /src/main/resources/static/js/manage/manage-userList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/manage/manage-userList.js -------------------------------------------------------------------------------- /src/main/resources/static/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/materialize.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/toastr/toastr.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/static/js/zh.js -------------------------------------------------------------------------------- /src/main/resources/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/404.html -------------------------------------------------------------------------------- /src/main/resources/templates/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/error/404.html -------------------------------------------------------------------------------- /src/main/resources/templates/goods/catelogGoods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/goods/catelogGoods.html -------------------------------------------------------------------------------- /src/main/resources/templates/goods/detailGoods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/goods/detailGoods.html -------------------------------------------------------------------------------- /src/main/resources/templates/goods/editGoods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/goods/editGoods.html -------------------------------------------------------------------------------- /src/main/resources/templates/goods/homeGoods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/goods/homeGoods.html -------------------------------------------------------------------------------- /src/main/resources/templates/goods/pubGoods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/goods/pubGoods.html -------------------------------------------------------------------------------- /src/main/resources/templates/goods/searchGoods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/goods/searchGoods.html -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/templates/manage/manage-goodsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/manage/manage-goodsList.html -------------------------------------------------------------------------------- /src/main/resources/templates/manage/manage-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/manage/manage-login.html -------------------------------------------------------------------------------- /src/main/resources/templates/manage/manage-userList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/manage/manage-userList.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/user/basic.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/goods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/user/goods.html -------------------------------------------------------------------------------- /src/main/resources/templates/user/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/main/resources/templates/user/home.html -------------------------------------------------------------------------------- /src/test/java/com/squirrel/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/test/java/com/squirrel/ApplicationTests.java -------------------------------------------------------------------------------- /src/test/java/com/squirrel/service/CatelogServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/test/java/com/squirrel/service/CatelogServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/squirrel/service/GoodsServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/test/java/com/squirrel/service/GoodsServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/squirrel/service/ImageServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/test/java/com/squirrel/service/ImageServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/squirrel/service/UserServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdufeZLYL/springboot-squirrel/HEAD/src/test/java/com/squirrel/service/UserServiceTest.java --------------------------------------------------------------------------------