嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
SSM项目实战--APP信息管理平台
.
├── App
│ ├── pom.xml
│ ├── src
│ │ └── main
│ │ ├── java
│ │ │ └── cn
│ │ │ └── appinfodb
│ │ │ ├── controller
│ │ │ │ ├── backend
│ │ │ │ │ ├── AppCheckController.java
│ │ │ │ │ └── BackendUserController.java
│ │ │ │ └── developer
│ │ │ │ ├── AppInfoController.java
│ │ │ │ └── DevUserController.java
│ │ │ ├── dao
│ │ │ │ ├── appcategory
│ │ │ │ │ ├── AppCategoryMapper.java
│ │ │ │ │ └── AppCategoryMapper.xml
│ │ │ │ ├── appinfo
│ │ │ │ │ ├── AppInfoMapper.java
│ │ │ │ │ └── AppInfoMapper.xml
│ │ │ │ ├── backendUser
│ │ │ │ │ ├── BackendUserMapper.java
│ │ │ │ │ └── BackendUserMapper.xml
│ │ │ │ ├── datadictionary
│ │ │ │ │ ├── DataDictionaryMapper.java
│ │ │ │ │ └── DataDictionaryMapper.xml
│ │ │ │ ├── devlogin
│ │ │ │ │ ├── DevUserMapper.java
│ │ │ │ │ └── DevUserMapper.xml
│ │ │ │ └── version
│ │ │ │ ├── AppVersionMapper.java
│ │ │ │ └── AppVersionMapper.xml
│ │ │ ├── entity
│ │ │ │ ├── AdPromotion.java
│ │ │ │ ├── AppCategory.java
│ │ │ │ ├── AppInfo.java
│ │ │ │ ├── AppVersion.java
│ │ │ │ ├── BackendUser.java
│ │ │ │ ├── DataDictionary.java
│ │ │ │ └── DevUser.java
│ │ │ ├── service
│ │ │ │ ├── DevUser
│ │ │ │ │ ├── DevUserService.java
│ │ │ │ │ └── Impl
│ │ │ │ │ └── DevUserServiceImpl.java
│ │ │ │ ├── appCategory
│ │ │ │ │ ├── AppCategoryService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── AppCategoryServiceImpl.java
│ │ │ │ ├── appinfo
│ │ │ │ │ ├── AppInfoService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── AppInfoServiceImpl.java
│ │ │ │ ├── backendUser
│ │ │ │ │ ├── BackendUserService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── BackendUserServiceImpl.java
│ │ │ │ ├── dataDictionary
│ │ │ │ │ ├── DataDictionaryService.java
│ │ │ │ │ └── impl
│ │ │ │ │ └── DataDictionaryServiceImpl.java
│ │ │ │ └── version
│ │ │ │ ├── AppVersionService.java
│ │ │ │ └── impl
│ │ │ │ └── AppVersionServiceImpl.java
│ │ │ └── util
│ │ │ ├── AppInterceptor1.java
│ │ │ ├── AppInterceptor2.java
│ │ │ ├── Constants.java
│ │ │ ├── PageSupport.java
│ │ │ └── StringToDateConverter.java
│ │ ├── resources
│ │ │ ├── applicationContext.xml
│ │ │ ├── database.properties
│ │ │ ├── log4j.properties
│ │ │ ├── mybatis-config.xml
│ │ │ └── springmvc-servlet.xml
│ │ └── webapp
│ │ ├── WEB-INF
│ │ │ ├── jsp
│ │ │ │ ├── backend
│ │ │ │ │ ├── appcheck.jsp
│ │ │ │ │ ├── applist.jsp
│ │ │ │ │ ├── common
│ │ │ │ │ │ ├── footer.jsp
│ │ │ │ │ │ ├── header.jsp
│ │ │ │ │ │ └── js.jsp
│ │ │ │ │ └── main.jsp
│ │ │ │ ├── backendlogin.jsp
│ │ │ │ ├── developer
│ │ │ │ │ ├── appinfoadd.jsp
│ │ │ │ │ ├── appinfolist.jsp
│ │ │ │ │ ├── appinfomodify.jsp
│ │ │ │ │ ├── appinfoview.jsp
│ │ │ │ │ ├── appversionadd.jsp
│ │ │ │ │ ├── appversionmodify.jsp
│ │ │ │ │ ├── common
│ │ │ │ │ │ ├── footer.jsp
│ │ │ │ │ │ ├── header.jsp
│ │ │ │ │ │ └── js.jsp
│ │ │ │ │ └── main.jsp
│ │ │ │ ├── devlogin.jsp
│ │ │ │ └── entrance.jsp
│ │ │ └── web.xml
│ │ └── statics
│ │ ├── css
│ │ │ ├── bootstrap-progressbar-3.3.4.min.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── custom.min.css
│ │ │ ├── dropzone.min.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── green@2x.png
│ │ │ ├── jquery.mCustomScrollbar.min.css
│ │ │ ├── jqvmap.min.css
│ │ │ ├── maps
│ │ │ │ └── jquery-jvectormap-2.0.3.css
│ │ │ └── nprogress.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
│ │ ├── images
│ │ │ ├── american-express.png
│ │ │ ├── cropper.jpg
│ │ │ ├── img.jpg
│ │ │ ├── img1.jpg
│ │ │ ├── inbox.png
│ │ │ ├── mastercard.png
│ │ │ ├── media.jpg
│ │ │ ├── paypal.png
│ │ │ ├── picture.jpg
│ │ │ ├── prod-1.jpg
│ │ │ ├── prod-2.jpg
│ │ │ ├── prod-3.jpg
│ │ │ ├── prod-4.jpg
│ │ │ ├── prod-5.jpg
│ │ │ ├── user.png
│ │ │ └── visa.png
│ │ ├── js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── custom.min.js
│ │ │ ├── datepicker
│ │ │ │ └── daterangepicker.js
│ │ │ ├── dropzone.js
│ │ │ ├── fastclick.js
│ │ │ ├── jquery.mCustomScrollbar.concat.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── moment
│ │ │ │ └── moment.min.js
│ │ │ ├── nprogress.js
│ │ │ └── validator.js
│ │ ├── localcss
│ │ │ ├── appinfoadd.css
│ │ │ ├── appinfolist.css
│ │ │ └── applist.css
│ │ ├── localjs
│ │ │ ├── appcheck.js
│ │ │ ├── appinfoadd.js
│ │ │ ├── appinfolist.js
│ │ │ ├── appinfomodify.js
│ │ │ ├── appinfoview.js
│ │ │ ├── applist.js
│ │ │ ├── appversionadd.js
│ │ │ ├── appversionmodify.js
│ │ │ └── rollpage.js
│ │ └── uploadfiles
│ │ ├── 12202_1382320119_2819.png
│ │ ├── 12202_1390386213_4773.apk
│ │ ├── 12202_1397467575_8568.apk
│ │ ├── 2-110R2093034L7.png
│ │ ├── Apparatus.apk
│ │ ├── air.net.machinarium.Machinarium.GP-2.0.35-2000035.apk
│ │ ├── air.net.machinarium.Machinarium.GP.jpg
│ │ ├── com.doodleapps.powdertoy.apk
│ │ ├── com.doodleapps.powdertoy.png
│ │ ├── com.google.android.inputmethod.pinyin.jpg
│ │ ├── com.google.android.inputmethod.pinyin_4.3.1.128147547-armeabi-v7a_4310115.apk
│ │ ├── com.katecca.screenofflockdonate.png
│ │ ├── com.kleientertainment.doNotStarvePocket-0.1-8.apk
│ │ ├── com.kleientertainment.doNotStarvePocket.jpg
│ │ ├── com.lbe.security.jpg
│ │ ├── com.lbe.security_311.apk
│ │ ├── com.momocorp.o2jamu-1.6.0.52-16052.apk
│ │ ├── com.momocorp.o2jamu.jpg
│ │ ├── com.plexnor.gravityscreenoffpro.png
│ │ ├── com.realarcade.doj.png
│ │ ├── com.sp.protector.free-6.7.2-165.apk
│ │ ├── com.speedsoftware.rootexplorer-4.0.1-112.apk
│ │ └── com.speedsoftware.rootexplorer.jpg
│ └── target
│ ├── SSMPro
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── classes
│ │ │ │ ├── applicationContext.xml
│ │ │ │ ├── cn
│ │ │ │ │ └── appinfodb
│ │ │ │ │ ├── controller
│ │ │ │ │ │ ├── backend
│ │ │ │ │ │ │ ├── AppCheckController.class
│ │ │ │ │ │ │ └── BackendUserController.class
│ │ │ │ │ │ └── developer
│ │ │ │ │ │ ├── AppInfoController.class
│ │ │ │ │ │ └── DevUserController.class
│ │ │ │ │ ├── dao
│ │ │ │ │ │ ├── appcategory
│ │ │ │ │ │ │ ├── AppCategoryMapper.class
│ │ │ │ │ │ │ └── AppCategoryMapper.xml
│ │ │ │ │ │ ├── appinfo
│ │ │ │ │ │ │ ├── AppInfoMapper.class
│ │ │ │ │ │ │ └── AppInfoMapper.xml
│ │ │ │ │ │ ├── backendUser
│ │ │ │ │ │ │ ├── BackendUserMapper.class
│ │ │ │ │ │ │ └── BackendUserMapper.xml
│ │ │ │ │ │ ├── datadictionary
│ │ │ │ │ │ │ ├── DataDictionaryMapper.class
│ │ │ │ │ │ │ └── DataDictionaryMapper.xml
│ │ │ │ │ │ ├── devlogin
│ │ │ │ │ │ │ ├── DevUserMapper.class
│ │ │ │ │ │ │ └── DevUserMapper.xml
│ │ │ │ │ │ └── version
│ │ │ │ │ │ ├── AppVersionMapper.class
│ │ │ │ │ │ └── AppVersionMapper.xml
│ │ │ │ │ ├── entity
│ │ │ │ │ │ ├── AdPromotion.class
│ │ │ │ │ │ ├── AppCategory.class
│ │ │ │ │ │ ├── AppInfo.class
│ │ │ │ │ │ ├── AppVersion.class
│ │ │ │ │ │ ├── BackendUser.class
│ │ │ │ │ │ ├── DataDictionary.class
│ │ │ │ │ │ └── DevUser.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── DevUser
│ │ │ │ │ │ │ ├── DevUserService.class
│ │ │ │ │ │ │ └── Impl
│ │ │ │ │ │ │ └── DevUserServiceImpl.class
│ │ │ │ │ │ ├── appCategory
│ │ │ │ │ │ │ ├── AppCategoryService.class
│ │ │ │ │ │ │ └── impl
│ │ │ │ │ │ │ └── AppCategoryServiceImpl.class
│ │ │ │ │ │ ├── appinfo
│ │ │ │ │ │ │ ├── AppInfoService.class
│ │ │ │ │ │ │ └── impl
│ │ │ │ │ │ │ └── AppInfoServiceImpl.class
│ │ │ │ │ │ ├── backendUser
│ │ │ │ │ │ │ ├── BackendUserService.class
│ │ │ │ │ │ │ └── impl
│ │ │ │ │ │ │ └── BackendUserServiceImpl.class
│ │ │ │ │ │ ├── dataDictionary
│ │ │ │ │ │ │ ├── DataDictionaryService.class
│ │ │ │ │ │ │ └── impl
│ │ │ │ │ │ │ └── DataDictionaryServiceImpl.class
│ │ │ │ │ │ └── version
│ │ │ │ │ │ ├── AppVersionService.class
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ └── AppVersionServiceImpl.class
│ │ │ │ │ └── util
│ │ │ │ │ ├── AppInterceptor1.class
│ │ │ │ │ ├── AppInterceptor2.class
│ │ │ │ │ ├── Constants.class
│ │ │ │ │ ├── PageSupport.class
│ │ │ │ │ └── StringToDateConverter.class
│ │ │ │ ├── database.properties
│ │ │ │ ├── log4j.properties
│ │ │ │ ├── mybatis-config.xml
│ │ │ │ └── springmvc-servlet.xml
│ │ │ ├── jsp
│ │ │ │ ├── backend
│ │ │ │ │ ├── appcheck.jsp
│ │ │ │ │ ├── applist.jsp
│ │ │ │ │ ├── common
│ │ │ │ │ │ ├── footer.jsp
│ │ │ │ │ │ ├── header.jsp
│ │ │ │ │ │ └── js.jsp
│ │ │ │ │ └── main.jsp
│ │ │ │ ├── backendlogin.jsp
│ │ │ │ ├── developer
│ │ │ │ │ ├── appinfoadd.jsp
│ │ │ │ │ ├── appinfolist.jsp
│ │ │ │ │ ├── appinfomodify.jsp
│ │ │ │ │ ├── appinfoview.jsp
│ │ │ │ │ ├── appversionadd.jsp
│ │ │ │ │ ├── appversionmodify.jsp
│ │ │ │ │ ├── common
│ │ │ │ │ │ ├── footer.jsp
│ │ │ │ │ │ ├── header.jsp
│ │ │ │ │ │ └── js.jsp
│ │ │ │ │ └── main.jsp
│ │ │ │ ├── devlogin.jsp
│ │ │ │ └── entrance.jsp
│ │ │ ├── lib
│ │ │ │ ├── aopalliance-1.0.jar
│ │ │ │ ├── aspectjweaver-1.9.6.jar
│ │ │ │ ├── classmate-1.3.1.jar
│ │ │ │ ├── commons-dbcp-1.4.jar
│ │ │ │ ├── commons-fileupload-1.4.jar
│ │ │ │ ├── commons-io-2.11.0.jar
│ │ │ │ ├── commons-lang-2.6.jar
│ │ │ │ ├── commons-logging-1.2.jar
│ │ │ │ ├── commons-pool-1.6.jar
│ │ │ │ ├── fastjson-1.2.79.jar
│ │ │ │ ├── hibernate-validator-5.3.6.Final.jar
│ │ │ │ ├── jboss-logging-3.3.0.Final.jar
│ │ │ │ ├── jstl-1.2.jar
│ │ │ │ ├── log4j-api-2.17.0.jar
│ │ │ │ ├── log4j-core-2.17.0.jar
│ │ │ │ ├── log4j-web-2.17.0.jar
│ │ │ │ ├── mybatis-3.5.6.jar
│ │ │ │ ├── mybatis-spring-2.0.6.jar
│ │ │ │ ├── mysql-connector-java-8.0.26.jar
│ │ │ │ ├── protobuf-java-3.11.4.jar
│ │ │ │ ├── servlet-api-2.5.jar
│ │ │ │ ├── spring-aop-5.3.15.jar
│ │ │ │ ├── spring-beans-5.3.15.jar
│ │ │ │ ├── spring-context-5.3.15.jar
│ │ │ │ ├── spring-core-5.3.15.jar
│ │ │ │ ├── spring-expression-5.3.15.jar
│ │ │ │ ├── spring-jcl-5.3.15.jar
│ │ │ │ ├── spring-jdbc-5.3.15.jar
│ │ │ │ ├── spring-tx-5.3.15.jar
│ │ │ │ ├── spring-web-5.3.15.jar
│ │ │ │ ├── spring-webmvc-5.3.15.jar
│ │ │ │ ├── standard-1.1.2.jar
│ │ │ │ └── validation-api-1.1.0.Final.jar
│ │ │ └── web.xml
│ │ └── statics
│ │ ├── css
│ │ │ ├── bootstrap-progressbar-3.3.4.min.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── custom.min.css
│ │ │ ├── dropzone.min.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── green@2x.png
│ │ │ ├── jquery.mCustomScrollbar.min.css
│ │ │ ├── jqvmap.min.css
│ │ │ ├── maps
│ │ │ │ └── jquery-jvectormap-2.0.3.css
│ │ │ └── nprogress.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
│ │ ├── images
│ │ │ ├── american-express.png
│ │ │ ├── cropper.jpg
│ │ │ ├── img.jpg
│ │ │ ├── img1.jpg
│ │ │ ├── inbox.png
│ │ │ ├── mastercard.png
│ │ │ ├── media.jpg
│ │ │ ├── paypal.png
│ │ │ ├── picture.jpg
│ │ │ ├── prod-1.jpg
│ │ │ ├── prod-2.jpg
│ │ │ ├── prod-3.jpg
│ │ │ ├── prod-4.jpg
│ │ │ ├── prod-5.jpg
│ │ │ ├── user.png
│ │ │ └── visa.png
│ │ ├── js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── custom.min.js
│ │ │ ├── datepicker
│ │ │ │ └── daterangepicker.js
│ │ │ ├── dropzone.js
│ │ │ ├── fastclick.js
│ │ │ ├── jquery.mCustomScrollbar.concat.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── moment
│ │ │ │ └── moment.min.js
│ │ │ ├── nprogress.js
│ │ │ └── validator.js
│ │ ├── localcss
│ │ │ ├── appinfoadd.css
│ │ │ ├── appinfolist.css
│ │ │ └── applist.css
│ │ ├── localjs
│ │ │ ├── appcheck.js
│ │ │ ├── appinfoadd.js
│ │ │ ├── appinfolist.js
│ │ │ ├── appinfomodify.js
│ │ │ ├── appinfoview.js
│ │ │ ├── applist.js
│ │ │ ├── appversionadd.js
│ │ │ ├── appversionmodify.js
│ │ │ └── rollpage.js
│ │ └── uploadfiles
│ │ ├── 12202_1382320119_2819.png
│ │ ├── 12202_1390386213_4773.apk
│ │ ├── 12202_1397467575_8568.apk
│ │ ├── 1646270335923.apk
│ │ ├── 1646270770493_Personal.jpg
│ │ ├── 2-110R2093034L7.png
│ │ ├── Apparatus.apk
│ │ ├── air.net.machinarium.Machinarium.GP-2.0.35-2000035.apk
│ │ ├── air.net.machinarium.Machinarium.GP.jpg
│ │ ├── com.doodleapps.powdertoy.apk
│ │ ├── com.doodleapps.powdertoy.png
│ │ ├── com.google.android.inputmethod.pinyin.jpg
│ │ ├── com.google.android.inputmethod.pinyin_4.3.1.128147547-armeabi-v7a_4310115.apk
│ │ ├── com.katecca.screenofflockdonate.png
│ │ ├── com.kleientertainment.doNotStarvePocket-0.1-8.apk
│ │ ├── com.kleientertainment.doNotStarvePocket.jpg
│ │ ├── com.lbe.security.jpg
│ │ ├── com.lbe.security_311.apk
│ │ ├── com.momocorp.o2jamu-1.6.0.52-16052.apk
│ │ ├── com.momocorp.o2jamu.jpg
│ │ ├── com.plexnor.gravityscreenoffpro.png
│ │ ├── com.realarcade.doj.png
│ │ ├── com.sp.protector.free-6.7.2-165.apk
│ │ ├── com.speedsoftware.rootexplorer-4.0.1-112.apk
│ │ └── com.speedsoftware.rootexplorer.jpg
│ ├── classes
│ │ ├── applicationContext.xml
│ │ ├── cn
│ │ │ └── appinfodb
│ │ │ ├── controller
│ │ │ │ ├── backend
│ │ │ │ │ ├── AppCheckController.class
│ │ │ │ │ └── BackendUserController.class
│ │ │ │ └── developer
│ │ │ │ ├── AppInfoController.class
│ │ │ │ └── DevUserController.class
│ │ │ ├── dao
│ │ │ │ ├── appcategory
│ │ │ │ │ ├── AppCategoryMapper.class
│ │ │ │ │ └── AppCategoryMapper.xml
│ │ │ │ ├── appinfo
│ │ │ │ │ ├── AppInfoMapper.class
│ │ │ │ │ └── AppInfoMapper.xml
│ │ │ │ ├── backendUser
│ │ │ │ │ ├── BackendUserMapper.class
│ │ │ │ │ └── BackendUserMapper.xml
│ │ │ │ ├── datadictionary
│ │ │ │ │ ├── DataDictionaryMapper.class
│ │ │ │ │ └── DataDictionaryMapper.xml
│ │ │ │ ├── devlogin
│ │ │ │ │ ├── DevUserMapper.class
│ │ │ │ │ └── DevUserMapper.xml
│ │ │ │ └── version
│ │ │ │ ├── AppVersionMapper.class
│ │ │ │ └── AppVersionMapper.xml
│ │ │ ├── entity
│ │ │ │ ├── AdPromotion.class
│ │ │ │ ├── AppCategory.class
│ │ │ │ ├── AppInfo.class
│ │ │ │ ├── AppVersion.class
│ │ │ │ ├── BackendUser.class
│ │ │ │ ├── DataDictionary.class
│ │ │ │ └── DevUser.class
│ │ │ ├── service
│ │ │ │ ├── DevUser
│ │ │ │ │ ├── DevUserService.class
│ │ │ │ │ └── Impl
│ │ │ │ │ └── DevUserServiceImpl.class
│ │ │ │ ├── appCategory
│ │ │ │ │ ├── AppCategoryService.class
│ │ │ │ │ └── impl
│ │ │ │ │ └── AppCategoryServiceImpl.class
│ │ │ │ ├── appinfo
│ │ │ │ │ ├── AppInfoService.class
│ │ │ │ │ └── impl
│ │ │ │ │ └── AppInfoServiceImpl.class
│ │ │ │ ├── backendUser
│ │ │ │ │ ├── BackendUserService.class
│ │ │ │ │ └── impl
│ │ │ │ │ └── BackendUserServiceImpl.class
│ │ │ │ ├── dataDictionary
│ │ │ │ │ ├── DataDictionaryService.class
│ │ │ │ │ └── impl
│ │ │ │ │ └── DataDictionaryServiceImpl.class
│ │ │ │ └── version
│ │ │ │ ├── AppVersionService.class
│ │ │ │ └── impl
│ │ │ │ └── AppVersionServiceImpl.class
│ │ │ └── util
│ │ │ ├── AppInterceptor1.class
│ │ │ ├── AppInterceptor2.class
│ │ │ ├── Constants.class
│ │ │ ├── PageSupport.class
│ │ │ └── StringToDateConverter.class
│ │ ├── database.properties
│ │ ├── log4j.properties
│ │ ├── mybatis-config.xml
│ │ └── springmvc-servlet.xml
│ └── generated-sources
│ └── annotations
└── SSM项目实战--APP信息管理平台.rar
129 directories, 381 files