源码家

  • 开发语言:
  • Java
  • 源码大小:
  • 17.46M
  • 源码类别:
  • Java数据库编程
  • 文件格式:
  • .zip

源码介绍

【源码简介】停车场管理系统

【源码截图】

【核心源码】

.
├── 001_ssm_ 停车场管理系统
│   ├── 01_文档
│   ├── 02_截图
│   │   ├── 1.png
│   │   ├── 2.png
│   │   ├── 3.png
│   │   ├── 4.png
│   │   └── 5.png
│   ├── 03_视频
│   │   └── 部署视频.mp4
│   ├── parking
│   │   ├── README.md
│   │   ├── bin
│   │   │   └── com
│   │   │       └── carlinfo
│   │   │           ├── common
│   │   │           │   ├── controller
│   │   │           │   │   └── BaseController.class
│   │   │           │   ├── dao
│   │   │           │   │   └── IBaseDao.class
│   │   │           │   ├── pojo
│   │   │           │   │   └── BasePojo.class
│   │   │           │   ├── service
│   │   │           │   │   └── BaseServiceImpl.class
│   │   │           │   ├── test
│   │   │           │   │   └── BaseTest.class
│   │   │           │   └── util
│   │   │           │       ├── ConstatFinalUtil.class
│   │   │           │       ├── DateUtil.class
│   │   │           │       ├── EncryptUtil.class
│   │   │           │       ├── FileUtil.class
│   │   │           │       ├── HttpUtil.class
│   │   │           │       ├── PageInfoUtil.class
│   │   │           │       ├── RegexUtil.class
│   │   │           │       ├── SpringEmailUtil.class
│   │   │           │       └── VerifyCodeUtil.class
│   │   │           ├── parking
│   │   │           │   ├── back
│   │   │           │   │   ├── controller
│   │   │           │   │   │   ├── AdminsBackController.class
│   │   │           │   │   │   ├── NoLoginController.class
│   │   │           │   │   │   ├── OrdersBackController.class
│   │   │           │   │   │   ├── ParkingsBackController.class
│   │   │           │   │   │   ├── UsersBackController.class
│   │   │           │   │   │   └── VehiclesBackController.class
│   │   │           │   │   └── interceptor
│   │   │           │   │       └── AuthInter.class
│   │   │           │   ├── head
│   │   │           │   │   ├── controller
│   │   │           │   │   │   ├── NoLoginController.class
│   │   │           │   │   │   ├── OrdersHeadController.class
│   │   │           │   │   │   ├── OuterHeadContoller.class
│   │   │           │   │   │   ├── ParkingsHeadController.class
│   │   │           │   │   │   ├── UsersHeadController.class
│   │   │           │   │   │   └── VehiclesHeadController.class
│   │   │           │   │   └── interceptor
│   │   │           │   │       └── AuthInter.class
│   │   │           │   ├── orders
│   │   │           │   │   ├── dao
│   │   │           │   │   │   ├── AOrdersHistoryMapper.xml
│   │   │           │   │   │   ├── AOrdersMapper.xml
│   │   │           │   │   │   ├── IAOrdersDao.class
│   │   │           │   │   │   └── IAOrdersHistoryDao.class
│   │   │           │   │   ├── pojo
│   │   │           │   │   │   ├── AOrders.class
│   │   │           │   │   │   ├── AOrdersEnum.class
│   │   │           │   │   │   ├── AOrdersHistory.class
│   │   │           │   │   │   └── AOrdersHistoryEnum.class
│   │   │           │   │   └── service
│   │   │           │   │       ├── IOrdersService.class
│   │   │           │   │       └── impl
│   │   │           │   │           └── OrdersServiceImpl.class
│   │   │           │   ├── outer
│   │   │           │   │   ├── controller
│   │   │           │   │   │   └── CommonHeadOuterController.class
│   │   │           │   │   └── service
│   │   │           │   │       ├── IOuterService.class
│   │   │           │   │       └── impl
│   │   │           │   │           └── OuterServiceImpl.class
│   │   │           │   ├── system
│   │   │           │   │   ├── dao
│   │   │           │   │   │   ├── ARegionMapper.xml
│   │   │           │   │   │   └── IARegionDAO.class
│   │   │           │   │   ├── pojo
│   │   │           │   │   │   ├── ARegion.class
│   │   │           │   │   │   └── ARegionEnum.class
│   │   │           │   │   └── service
│   │   │           │   │       ├── ISystemService.class
│   │   │           │   │       └── impl
│   │   │           │   │           └── SystemServiceImplay.class
│   │   │           │   ├── task
│   │   │           │   │   └── SpringTask.class
│   │   │           │   └── users
│   │   │           │       ├── dao
│   │   │           │       │   ├── AAdminsMapper.xml
│   │   │           │       │   ├── ACommentsMapper.xml
│   │   │           │       │   ├── AParkingsMapper.xml
│   │   │           │       │   ├── AUsersMapper.xml
│   │   │           │       │   ├── AVehicleMapper.xml
│   │   │           │       │   ├── IAAdminsDao.class
│   │   │           │       │   ├── IACommentsDao.class
│   │   │           │       │   ├── IAParkingsDao.class
│   │   │           │       │   ├── IAUsersDao.class
│   │   │           │       │   └── IAVehiclesDao.class
│   │   │           │       ├── pojo
│   │   │           │       │   ├── AAdmins.class
│   │   │           │       │   ├── AAdminsEnum.class
│   │   │           │       │   ├── AComments.class
│   │   │           │       │   ├── ACommentsEnum.class
│   │   │           │       │   ├── AParkings.class
│   │   │           │       │   ├── AParkingsEnum.class
│   │   │           │       │   ├── AUsers.class
│   │   │           │       │   ├── AUsersEnum.class
│   │   │           │       │   ├── AVehicles.class
│   │   │           │       │   └── AVehiclesEnum.class
│   │   │           │       └── service
│   │   │           │           ├── IParkingsService.class
│   │   │           │           ├── IUsersService.class
│   │   │           │           └── impl
│   │   │           │               ├── ParkingsServiceImpl.class
│   │   │           │               └── UsersServiceImpl.class
│   │   │           ├── shop
│   │   │           │   └── common
│   │   │           │       └── test
│   │   │           │           └── CommonTest.class
│   │   │           └── users
│   │   │               └── test
│   │   │                   ├── OrdersServiceTest.class
│   │   │                   └── UsersServiceTest.class
│   │   ├── docs
│   │   │   └── parking.sql
│   │   ├── parking-common
│   │   │   ├── logs
│   │   │   │   └── system.log
│   │   │   ├── pom.xml
│   │   │   ├── src
│   │   │   │   ├── main
│   │   │   │   │   ├── java
│   │   │   │   │   │   └── com
│   │   │   │   │   │       └── carlinfo
│   │   │   │   │   │           └── common
│   │   │   │   │   │               ├── controller
│   │   │   │   │   │               │   └── BaseController.java
│   │   │   │   │   │               ├── dao
│   │   │   │   │   │               │   └── IBaseDao.java
│   │   │   │   │   │               ├── pojo
│   │   │   │   │   │               │   └── BasePojo.java
│   │   │   │   │   │               ├── service
│   │   │   │   │   │               │   └── BaseServiceImpl.java
│   │   │   │   │   │               ├── test
│   │   │   │   │   │               │   └── BaseTest.java
│   │   │   │   │   │               └── util
│   │   │   │   │   │                   ├── ConstatFinalUtil.java
│   │   │   │   │   │                   ├── DateUtil.java
│   │   │   │   │   │                   ├── EncryptUtil.java
│   │   │   │   │   │                   ├── FileUtil.java
│   │   │   │   │   │                   ├── HttpUtil.java
│   │   │   │   │   │                   ├── PageInfoUtil.java
│   │   │   │   │   │                   ├── RegexUtil.java
│   │   │   │   │   │                   ├── SpringEmailUtil.java
│   │   │   │   │   │                   └── VerifyCodeUtil.java
│   │   │   │   │   └── resources
│   │   │   │   │       ├── config.json
│   │   │   │   │       ├── log4j2.xml
│   │   │   │   │       └── spring
│   │   │   │   │           ├── applicationContext-common.xml
│   │   │   │   │           └── applicationContext-email.xml
│   │   │   │   └── test
│   │   │   │       ├── java
│   │   │   │       │   └── com
│   │   │   │       │       └── carlinfo
│   │   │   │       │           └── shop
│   │   │   │       │               └── common
│   │   │   │       │                   └── test
│   │   │   │       │                       └── CommonTest.java
│   │   │   │       └── resources
│   │   │   └── target
│   │   │       ├── classes
│   │   │       │   ├── META-INF
│   │   │       │   │   ├── MANIFEST.MF
│   │   │       │   │   └── maven
│   │   │       │   │       └── com.carlinfo
│   │   │       │   │           └── parking-common
│   │   │       │   │               ├── pom.properties
│   │   │       │   │               └── pom.xml
│   │   │       │   ├── com
│   │   │       │   │   └── carlinfo
│   │   │       │   │       └── common
│   │   │       │   │           ├── controller
│   │   │       │   │           │   └── BaseController.class
│   │   │       │   │           ├── dao
│   │   │       │   │           │   └── IBaseDao.class
│   │   │       │   │           ├── pojo
│   │   │       │   │           │   └── BasePojo.class
│   │   │       │   │           ├── service
│   │   │       │   │           │   └── BaseServiceImpl.class
│   │   │       │   │           ├── test
│   │   │       │   │           │   └── BaseTest.class
│   │   │       │   │           └── util
│   │   │       │   │               ├── ConstatFinalUtil.class
│   │   │       │   │               ├── DateUtil.class
│   │   │       │   │               ├── EncryptUtil.class
│   │   │       │   │               ├── FileUtil.class
│   │   │       │   │               ├── HttpUtil.class
│   │   │       │   │               ├── PageInfoUtil.class
│   │   │       │   │               ├── RegexUtil.class
│   │   │       │   │               ├── SpringEmailUtil$1.class
│   │   │       │   │               ├── SpringEmailUtil.class
│   │   │       │   │               └── VerifyCodeUtil.class
│   │   │       │   ├── config.json
│   │   │       │   ├── log4j2.xml
│   │   │       │   └── spring
│   │   │       │       ├── applicationContext-common.xml
│   │   │       │       └── applicationContext-email.xml
│   │   │       └── test-classes
│   │   │           └── com
│   │   │               └── carlinfo
│   │   │                   └── shop
│   │   │                       └── common
│   │   │                           └── test
│   │   │                               └── CommonTest.class
│   │   ├── parking-service
│   │   │   ├── parking-service-api
│   │   │   │   ├── pom.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── main
│   │   │   │   │   │   ├── java
│   │   │   │   │   │   │   └── com
│   │   │   │   │   │   │       └── carlinfo
│   │   │   │   │   │   │           └── parking
│   │   │   │   │   │   │               ├── orders
│   │   │   │   │   │   │               │   ├── pojo
│   │   │   │   │   │   │               │   └── service
│   │   │   │   │   │   │               ├── outer
│   │   │   │   │   │   │               │   └── service
│   │   │   │   │   │   │               ├── system
│   │   │   │   │   │   │               │   ├── pojo
│   │   │   │   │   │   │               │   └── service
│   │   │   │   │   │   │               └── users
│   │   │   │   │   │   │                   ├── pojo
│   │   │   │   │   │   │                   └── service
│   │   │   │   │   │   └── resources
│   │   │   │   │   └── test
│   │   │   │   │       ├── java
│   │   │   │   │       └── resources
│   │   │   │   └── target
│   │   │   │       ├── classes
│   │   │   │       │   ├── META-INF
│   │   │   │       │   │   ├── MANIFEST.MF
│   │   │   │       │   │   └── maven
│   │   │   │       │   │       └── com.carlinfo
│   │   │   │       │   │           └── parking-service-api
│   │   │   │       │   │               ├── pom.properties
│   │   │   │       │   │               └── pom.xml
│   │   │   │       │   └── com
│   │   │   │       │       └── carlinfo
│   │   │   │       │           └── parking
│   │   │   │       │               ├── orders
│   │   │   │       │               │   ├── pojo
│   │   │   │       │               │   │   ├── AOrders.class
│   │   │   │       │               │   │   ├── AOrdersEnum.class
│   │   │   │       │               │   │   ├── AOrdersHistory.class
│   │   │   │       │               │   │   └── AOrdersHistoryEnum.class
│   │   │   │       │               │   └── service
│   │   │   │       │               │       └── IOrdersService.class
│   │   │   │       │               ├── outer
│   │   │   │       │               │   └── service
│   │   │   │       │               │       └── IOuterService.class
│   │   │   │       │               ├── system
│   │   │   │       │               │   ├── pojo
│   │   │   │       │               │   │   ├── ARegion.class
│   │   │   │       │               │   │   └── ARegionEnum.class
│   │   │   │       │               │   └── service
│   │   │   │       │               │       └── ISystemService.class
│   │   │   │       │               └── users
│   │   │   │       │                   ├── pojo
│   │   │   │       │                   │   ├── AAdmins.class
│   │   │   │       │                   │   ├── AAdminsEnum.class
│   │   │   │       │                   │   ├── AComments.class
│   │   │   │       │                   │   ├── ACommentsEnum.class
│   │   │   │       │                   │   ├── AParkings.class
│   │   │   │       │                   │   ├── AParkingsEnum.class
│   │   │   │       │                   │   ├── AUsers.class
│   │   │   │       │                   │   ├── AUsersEnum.class
│   │   │   │       │                   │   ├── AVehicles.class
│   │   │   │       │                   │   └── AVehiclesEnum.class
│   │   │   │       │                   └── service
│   │   │   │       │                       ├── IParkingsService.class
│   │   │   │       │                       └── IUsersService.class
│   │   │   │       └── test-classes
│   │   │   ├── parking-service-impl
│   │   │   │   ├── logs
│   │   │   │   │   └── system.log
│   │   │   │   ├── pom.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── main
│   │   │   │   │   │   ├── java
│   │   │   │   │   │   │   └── com
│   │   │   │   │   │   │       └── carlinfo
│   │   │   │   │   │   │           └── parking
│   │   │   │   │   │   │               ├── orders
│   │   │   │   │   │   │               │   ├── dao
│   │   │   │   │   │   │               │   └── service
│   │   │   │   │   │   │               ├── outer
│   │   │   │   │   │   │               │   └── service
│   │   │   │   │   │   │               ├── system
│   │   │   │   │   │   │               │   ├── dao
│   │   │   │   │   │   │               │   └── service
│   │   │   │   │   │   │               └── users
│   │   │   │   │   │   │                   ├── dao
│   │   │   │   │   │   │                   └── service
│   │   │   │   │   │   └── resources
│   │   │   │   │   │       ├── jdbc.properties
│   │   │   │   │   │       ├── mybatis.cfg.xml
│   │   │   │   │   │       └── spring
│   │   │   │   │   │           ├── applicationContext-datasource.xml
│   │   │   │   │   │           └── applicationContext-mybatis.xml
│   │   │   │   │   └── test
│   │   │   │   │       ├── java
│   │   │   │   │       │   └── com
│   │   │   │   │       │       └── carlinfo
│   │   │   │   │       │           └── users
│   │   │   │   │       │               └── test
│   │   │   │   │       │                   ├── OrdersServiceTest.java
│   │   │   │   │       │                   └── UsersServiceTest.java
│   │   │   │   │       └── resources
│   │   │   │   └── target
│   │   │   │       ├── classes
│   │   │   │       │   ├── META-INF
│   │   │   │       │   │   ├── MANIFEST.MF
│   │   │   │       │   │   └── maven
│   │   │   │       │   │       └── com.carlinfo
│   │   │   │       │   │           └── parking-service-impl
│   │   │   │       │   │               ├── pom.properties
│   │   │   │       │   │               └── pom.xml
│   │   │   │       │   ├── com
│   │   │   │       │   │   └── carlinfo
│   │   │   │       │   │       └── parking
│   │   │   │       │   │           ├── orders
│   │   │   │       │   │           │   ├── dao
│   │   │   │       │   │           │   │   ├── AOrdersHistoryMapper.xml
│   │   │   │       │   │           │   │   ├── AOrdersMapper.xml
│   │   │   │       │   │           │   │   ├── IAOrdersDao.class
│   │   │   │       │   │           │   │   └── IAOrdersHistoryDao.class
│   │   │   │       │   │           │   └── service
│   │   │   │       │   │           │       └── impl
│   │   │   │       │   │           ├── outer
│   │   │   │       │   │           │   └── service
│   │   │   │       │   │           │       └── impl
│   │   │   │       │   │           ├── system
│   │   │   │       │   │           │   ├── dao
│   │   │   │       │   │           │   │   ├── ARegionMapper.xml
│   │   │   │       │   │           │   │   └── IARegionDAO.class
│   │   │   │       │   │           │   └── service
│   │   │   │       │   │           │       └── impl
│   │   │   │       │   │           └── users
│   │   │   │       │   │               ├── dao
│   │   │   │       │   │               │   ├── AAdminsMapper.xml
│   │   │   │       │   │               │   ├── ACommentsMapper.xml
│   │   │   │       │   │               │   ├── AParkingsMapper.xml
│   │   │   │       │   │               │   ├── AUsersMapper.xml
│   │   │   │       │   │               │   ├── AVehicleMapper.xml
│   │   │   │       │   │               │   ├── IAAdminsDao.class
│   │   │   │       │   │               │   ├── IACommentsDao.class
│   │   │   │       │   │               │   ├── IAParkingsDao.class
│   │   │   │       │   │               │   ├── IAUsersDao.class
│   │   │   │       │   │               │   └── IAVehiclesDao.class
│   │   │   │       │   │               └── service
│   │   │   │       │   │                   └── impl
│   │   │   │       │   ├── jdbc.properties
│   │   │   │       │   ├── mybatis.cfg.xml
│   │   │   │       │   └── spring
│   │   │   │       │       ├── applicationContext-datasource.xml
│   │   │   │       │       └── applicationContext-mybatis.xml
│   │   │   │       └── test-classes
│   │   │   │           └── com
│   │   │   │               └── carlinfo
│   │   │   │                   └── users
│   │   │   │                       └── test
│   │   │   │                           ├── OrdersServiceTest.class
│   │   │   │                           └── UsersServiceTest.class
│   │   │   ├── pom.xml
│   │   │   └── src
│   │   │       └── site
│   │   ├── parking-web
│   │   │   ├── parking-web-back
│   │   │   │   ├── pom.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── main
│   │   │   │   │   │   ├── java
│   │   │   │   │   │   │   └── com
│   │   │   │   │   │   │       └── carlinfo
│   │   │   │   │   │   │           └── parking
│   │   │   │   │   │   │               ├── back
│   │   │   │   │   │   │               │   ├── controller
│   │   │   │   │   │   │               │   └── interceptor
│   │   │   │   │   │   │               ├── outer
│   │   │   │   │   │   │               │   └── controller
│   │   │   │   │   │   │               └── task
│   │   │   │   │   │   │                   └── SpringTask.java
│   │   │   │   │   │   ├── resources
│   │   │   │   │   │   │   └── spring
│   │   │   │   │   │   │       ├── applicationContext-interceptor.xml
│   │   │   │   │   │   │       ├── applicationContext-mvc.xml
│   │   │   │   │   │   │       └── applicationContext-task.xml
│   │   │   │   │   │   └── webapp
│   │   │   │   │   │       ├── WEB-INF
│   │   │   │   │   │       │   ├── jsp
│   │   │   │   │   │       │   │   └── back
│   │   │   │   │   │       │   │       ├── admins
│   │   │   │   │   │       │   │       │   ├── adminsInfo.jsp
│   │   │   │   │   │       │   │       │   ├── adminsInsert.jsp
│   │   │   │   │   │       │   │       │   ├── adminsList.jsp
│   │   │   │   │   │       │   │       │   └── adminsUpdate.jsp
│   │   │   │   │   │       │   │       ├── login.jsp
│   │   │   │   │   │       │   │       ├── main.jsp
│   │   │   │   │   │       │   │       ├── orders
│   │   │   │   │   │       │   │       │   ├── ordersInfo.jsp
│   │   │   │   │   │       │   │       │   ├── ordersInsert.jsp
│   │   │   │   │   │       │   │       │   ├── ordersList.jsp
│   │   │   │   │   │       │   │       │   └── ordersUpdate.jsp
│   │   │   │   │   │       │   │       ├── parkings
│   │   │   │   │   │       │   │       │   ├── parkingsInfo.jsp
│   │   │   │   │   │       │   │       │   ├── parkingsInsert.jsp
│   │   │   │   │   │       │   │       │   ├── parkingsList.jsp
│   │   │   │   │   │       │   │       │   └── parkingsUpdate.jsp
│   │   │   │   │   │       │   │       ├── users
│   │   │   │   │   │       │   │       │   ├── usersInfo.jsp
│   │   │   │   │   │       │   │       │   ├── usersInsert.jsp
│   │   │   │   │   │       │   │       │   ├── usersList.jsp
│   │   │   │   │   │       │   │       │   └── usersUpdate.jsp
│   │   │   │   │   │       │   │       ├── vehicles
│   │   │   │   │   │       │   │       │   ├── vehiclesInfo.jsp
│   │   │   │   │   │       │   │       │   ├── vehiclesInsert.jsp
│   │   │   │   │   │       │   │       │   ├── vehiclesList.jsp
│   │   │   │   │   │       │   │       │   └── vehiclesUpdate.jsp
│   │   │   │   │   │       │   │       └── welcome.jsp
│   │   │   │   │   │       │   └── web.xml
│   │   │   │   │   │       ├── common
│   │   │   │   │   │       │   ├── include
│   │   │   │   │   │       │   │   ├── footer.jsp
│   │   │   │   │   │       │   │   ├── header.jsp
│   │   │   │   │   │       │   │   ├── page.jsp
│   │   │   │   │   │       │   │   └── title.jsp
│   │   │   │   │   │       │   └── resource
│   │   │   │   │   │       │       ├── H-ui.admin
│   │   │   │   │   │       │       │   ├── lib
│   │   │   │   │   │       │       │   │   ├── Hui-iconfont
│   │   │   │   │   │       │       │   │   ├── My97DatePicker
│   │   │   │   │   │       │       │   │   ├── datatables
│   │   │   │   │   │       │       │   │   ├── jquery.contextmenu
│   │   │   │   │   │       │       │   │   ├── jquery.validation
│   │   │   │   │   │       │       │   │   ├── layer
│   │   │   │   │   │       │       │   │   ├── laypage
│   │   │   │   │   │       │       │   │   └── zTree
│   │   │   │   │   │       │       │   └── static
│   │   │   │   │   │       │       │       ├── h-ui
│   │   │   │   │   │       │       │       └── h-ui.admin
│   │   │   │   │   │       │       ├── My97DatePicker
│   │   │   │   │   │       │       │   ├── WdatePicker.js
│   │   │   │   │   │       │       │   ├── calendar.js
│   │   │   │   │   │       │       │   ├── lang
│   │   │   │   │   │       │       │   │   ├── en.js
│   │   │   │   │   │       │       │   │   ├── zh-cn.js
│   │   │   │   │   │       │       │   │   └── zh-tw.js
│   │   │   │   │   │       │       │   ├── skin
│   │   │   │   │   │       │       │   │   ├── WdatePicker.css
│   │   │   │   │   │       │       │   │   ├── datePicker.gif
│   │   │   │   │   │       │       │   │   ├── default
│   │   │   │   │   │       │       │   │   └── whyGreen
│   │   │   │   │   │       │       │   └── 开发包
│   │   │   │   │   │       │       │       ├── lang
│   │   │   │   │   │       │       │       ├── readme.txt
│   │   │   │   │   │       │       │       └── skin
│   │   │   │   │   │       │       ├── bootstrap
│   │   │   │   │   │       │       │   ├── css
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.css
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.css.map
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.min.css
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.min.css.map
│   │   │   │   │   │       │       │   │   ├── bootstrap.css
│   │   │   │   │   │       │       │   │   ├── bootstrap.css.map
│   │   │   │   │   │       │       │   │   ├── bootstrap.min.css
│   │   │   │   │   │       │       │   │   └── bootstrap.min.css.map
│   │   │   │   │   │       │       │   ├── fonts
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   │       │       │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   │   │       │       │   └── js
│   │   │   │   │   │       │       │       ├── bootstrap.js
│   │   │   │   │   │       │       │       ├── bootstrap.min.js
│   │   │   │   │   │       │       │       ├── jquery-3.2.1.min.js
│   │   │   │   │   │       │       │       └── npm.js
│   │   │   │   │   │       │       ├── bootstrapvalidator
│   │   │   │   │   │       │       │   ├── css
│   │   │   │   │   │       │       │   │   ├── bootstrapValidator.css
│   │   │   │   │   │       │       │   │   └── bootstrapValidator.min.css
│   │   │   │   │   │       │       │   └── js
│   │   │   │   │   │       │       │       ├── bootstrapValidator.js
│   │   │   │   │   │       │       │       ├── bootstrapValidator.min.js
│   │   │   │   │   │       │       │       └── language
│   │   │   │   │   │       │       ├── jquery-3.2.1.min.js
│   │   │   │   │   │       │       ├── login.html
│   │   │   │   │   │       │       └── util.js
│   │   │   │   │   │       └── index.jsp
│   │   │   │   │   └── test
│   │   │   │   │       ├── java
│   │   │   │   │       └── resources
│   │   │   │   └── target
│   │   │   │       ├── classes
│   │   │   │       │   ├── com
│   │   │   │       │   │   └── carlinfo
│   │   │   │       │   │       └── parking
│   │   │   │       │   │           ├── back
│   │   │   │       │   │           │   ├── controller
│   │   │   │       │   │           │   │   ├── AdminsBackController.class
│   │   │   │       │   │           │   │   ├── NoLoginController.class
│   │   │   │       │   │           │   │   ├── OrdersBackController.class
│   │   │   │       │   │           │   │   ├── ParkingsBackController.class
│   │   │   │       │   │           │   │   ├── UsersBackController.class
│   │   │   │       │   │           │   │   └── VehiclesBackController.class
│   │   │   │       │   │           │   └── interceptor
│   │   │   │       │   │           │       └── AuthInter.class
│   │   │   │       │   │           ├── outer
│   │   │   │       │   │           │   └── controller
│   │   │   │       │   │           │       └── CommonHeadOuterController.class
│   │   │   │       │   │           └── task
│   │   │   │       │   │               └── SpringTask.class
│   │   │   │       │   └── spring
│   │   │   │       │       ├── applicationContext-interceptor.xml
│   │   │   │       │       ├── applicationContext-mvc.xml
│   │   │   │       │       └── applicationContext-task.xml
│   │   │   │       ├── m2e-wtp
│   │   │   │       │   └── web-resources
│   │   │   │       │       └── META-INF
│   │   │   │       │           ├── MANIFEST.MF
│   │   │   │       │           └── maven
│   │   │   │       │               └── com.carlinfo
│   │   │   │       │                   └── parking-web-back
│   │   │   │       │                       ├── pom.properties
│   │   │   │       │                       └── pom.xml
│   │   │   │       └── test-classes
│   │   │   ├── parking-web-head
│   │   │   │   ├── pom.xml
│   │   │   │   ├── src
│   │   │   │   │   ├── main
│   │   │   │   │   │   ├── java
│   │   │   │   │   │   │   └── com
│   │   │   │   │   │   │       └── carlinfo
│   │   │   │   │   │   │           └── parking
│   │   │   │   │   │   │               └── head
│   │   │   │   │   │   │                   ├── controller
│   │   │   │   │   │   │                   └── interceptor
│   │   │   │   │   │   ├── resources
│   │   │   │   │   │   │   └── spring
│   │   │   │   │   │   │       ├── applicationContext-interceptor.xml
│   │   │   │   │   │   │       └── applicationContext-mvc.xml
│   │   │   │   │   │   └── webapp
│   │   │   │   │   │       ├── WEB-INF
│   │   │   │   │   │       │   ├── jsp
│   │   │   │   │   │       │   │   └── head
│   │   │   │   │   │       │   │       ├── forget.jsp
│   │   │   │   │   │       │   │       ├── login.jsp
│   │   │   │   │   │       │   │       ├── orders
│   │   │   │   │   │       │   │       │   ├── ordersInfo.jsp
│   │   │   │   │   │       │   │       │   └── ordersInsert.jsp
│   │   │   │   │   │       │   │       ├── parkings
│   │   │   │   │   │       │   │       │   ├── parkingsInfo.jsp
│   │   │   │   │   │       │   │       │   └── parkingsList.jsp
│   │   │   │   │   │       │   │       ├── resetPass.jsp
│   │   │   │   │   │       │   │       ├── users
│   │   │   │   │   │       │   │       │   ├── main.jsp
│   │   │   │   │   │       │   │       │   ├── usersInfo.jsp
│   │   │   │   │   │       │   │       │   └── usersUpdate.jsp
│   │   │   │   │   │       │   │       ├── usersInsert.jsp
│   │   │   │   │   │       │   │       └── vehicles
│   │   │   │   │   │       │   │           ├── vehiclesInfo.jsp
│   │   │   │   │   │       │   │           ├── vehiclesInsert.jsp
│   │   │   │   │   │       │   │           ├── vehiclesList.jsp
│   │   │   │   │   │       │   │           └── vehiclesUpdate.jsp
│   │   │   │   │   │       │   └── web.xml
│   │   │   │   │   │       ├── common
│   │   │   │   │   │       │   ├── include
│   │   │   │   │   │       │   │   ├── footer.jsp
│   │   │   │   │   │       │   │   ├── header.jsp
│   │   │   │   │   │       │   │   ├── page.jsp
│   │   │   │   │   │       │   │   └── title1.jsp
│   │   │   │   │   │       │   └── resource
│   │   │   │   │   │       │       ├── My97DatePicker
│   │   │   │   │   │       │       │   ├── WdatePicker.js
│   │   │   │   │   │       │       │   ├── calendar.js
│   │   │   │   │   │       │       │   ├── lang
│   │   │   │   │   │       │       │   │   ├── en.js
│   │   │   │   │   │       │       │   │   ├── zh-cn.js
│   │   │   │   │   │       │       │   │   └── zh-tw.js
│   │   │   │   │   │       │       │   ├── skin
│   │   │   │   │   │       │       │   │   ├── WdatePicker.css
│   │   │   │   │   │       │       │   │   ├── datePicker.gif
│   │   │   │   │   │       │       │   │   ├── default
│   │   │   │   │   │       │       │   │   └── whyGreen
│   │   │   │   │   │       │       │   └── 开发包
│   │   │   │   │   │       │       │       ├── lang
│   │   │   │   │   │       │       │       ├── readme.txt
│   │   │   │   │   │       │       │       └── skin
│   │   │   │   │   │       │       ├── bootstrap
│   │   │   │   │   │       │       │   ├── css
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.css
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.css.map
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.min.css
│   │   │   │   │   │       │       │   │   ├── bootstrap-theme.min.css.map
│   │   │   │   │   │       │       │   │   ├── bootstrap.css
│   │   │   │   │   │       │       │   │   ├── bootstrap.css.map
│   │   │   │   │   │       │       │   │   ├── bootstrap.min.css
│   │   │   │   │   │       │       │   │   └── bootstrap.min.css.map
│   │   │   │   │   │       │       │   ├── fonts
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   │       │       │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   │       │       │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   │   │       │       │   └── js
│   │   │   │   │   │       │       │       ├── bootstrap.js
│   │   │   │   │   │       │       │       ├── bootstrap.min.js
│   │   │   │   │   │       │       │       ├── jquery-3.2.1.min.js
│   │   │   │   │   │       │       │       └── npm.js
│   │   │   │   │   │       │       ├── bootstrapvalidator
│   │   │   │   │   │       │       │   ├── css
│   │   │   │   │   │       │       │   │   ├── bootstrapValidator.css
│   │   │   │   │   │       │       │   │   └── bootstrapValidator.min.css
│   │   │   │   │   │       │       │   └── js
│   │   │   │   │   │       │       │       ├── bootstrapValidator.js
│   │   │   │   │   │       │       │       ├── bootstrapValidator.min.js
│   │   │   │   │   │       │       │       └── language
│   │   │   │   │   │       │       ├── jquery-3.2.1.min.js
│   │   │   │   │   │       │       ├── time
│   │   │   │   │   │       │       │   └── My97DatePicker
│   │   │   │   │   │       │       │       └── 4.8
│   │   │   │   │   │       │       └── util.js
│   │   │   │   │   │       ├── css
│   │   │   │   │   │       │   └── main.css
│   │   │   │   │   │       ├── img
│   │   │   │   │   │       │   └── no_pic.gif
│   │   │   │   │   │       └── index.jsp
│   │   │   │   │   └── test
│   │   │   │   │       ├── java
│   │   │   │   │       └── resources
│   │   │   │   └── target
│   │   │   │       ├── classes
│   │   │   │       │   ├── com
│   │   │   │       │   │   └── carlinfo
│   │   │   │       │   │       └── parking
│   │   │   │       │   │           └── head
│   │   │   │       │   │               ├── controller
│   │   │   │       │   │               │   ├── NoLoginController.class
│   │   │   │       │   │               │   ├── OrdersHeadController.class
│   │   │   │       │   │               │   ├── OuterHeadContoller.class
│   │   │   │       │   │               │   ├── ParkingsHeadController.class
│   │   │   │       │   │               │   ├── UsersHeadController.class
│   │   │   │       │   │               │   └── VehiclesHeadController.class
│   │   │   │       │   │               └── interceptor
│   │   │   │       │   │                   └── AuthInter.class
│   │   │   │       │   └── spring
│   │   │   │       │       ├── applicationContext-interceptor.xml
│   │   │   │       │       └── applicationContext-mvc.xml
│   │   │   │       ├── m2e-wtp
│   │   │   │       │   └── web-resources
│   │   │   │       │       └── META-INF
│   │   │   │       │           ├── MANIFEST.MF
│   │   │   │       │           └── maven
│   │   │   │       │               └── com.carlinfo
│   │   │   │       │                   └── parking-web-head
│   │   │   │       │                       ├── pom.properties
│   │   │   │       │                       └── pom.xml
│   │   │   │       └── test-classes
│   │   │   ├── pom.xml
│   │   │   └── src
│   │   │       └── site
│   │   ├── pom.xml
│   │   └── src
│   │       └── site
│   ├── parking.zip
│   └── 密码.txt
└── _java停车场管理系统.zip

344 directories, 341 files


  • 商品评价
  • 交易规则
  • 交易流程

  • 发货方式

  • 1、自动:在上方保障服务中标有自动发货的商品,拍下后,将会自动收到来自卖家的商品获取(下载)链接;

    2、手动:未标有自动发货的的商品,拍下后,卖家会收到邮件、短信提醒,也可通过QQ或订单中的电话联系对方。

  • 交易周期

  • 1、源码默认交易周期:自动发货商品为1天,手动发货商品为3天,买家有1次额外延长3天交易周期的权利;

    2、若上述交易周期双方依然无法完成交易,任意一方可发起追加周期(1~7天)的请求,对方同意即可延长。

  • 退款说明

  • 1、描述:源码描述(含标题)与实际源码不一致的(例:描述PHP实际为ASP、描述的功能实际缺少、版本不符等);

    2、演示:有演示站时,与实际源码小于95%一致的(但描述中有"不保证完全一样、有变化的可能性"类似显著声明的除外);

    3、发货:手动发货源码,在卖家未发货前,已申请退款的;

    4、安装:免费提供安装服务的源码但卖家不履行的;

    5、收费:额外收取其他费用的(但描述中有显著声明或双方交易前有商定的除外);

    6、其他:如质量方面的硬性常规问题等。

    注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。

  • 1注意事项

  • 1、源码家会对双方交易的过程及交易商品的快照进行永久存档,以确保交易的真实、有效、安全!

    2、源码家无法对如“永久包更新”、“永久技术支持”等类似交易之后的商家承诺做担保,请买家自行鉴别;

    3、在源码同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外);

    4、在没有"无任何正当退款依据"的前提下,商品写有"一旦售出,概不支持退款"等类似的声明,视为无效声明;

    5、在未拍下前,双方在QQ上所商定的交易内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准);

    6、因聊天记录可作为纠纷评判依据,故双方联系时,只与对方在互站上所留的QQ、手机号沟通,以防对方不承认自我承诺。

    7、虽然交易产生纠纷的几率很小,但一定要保留如聊天记录、手机短信等这样的重要信息,以防产生纠纷时便于互站介入快速处理。

  • 互站声明

  • 1、源码家作为第三方中介平台,依据交易合同(商品描述、交易前商定的内容)来保障交易的安全及买卖双方的权益;

    2、非平台线上交易的项目,出现任何后果均与互站无关;无论卖家以何理由要求线下交易的,请联系管理举报。