├── .gitignore ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── jczc │ │ └── operatorweb │ │ ├── OperatorWebApplication.java │ │ ├── config │ │ └── UserAccessConfig.java │ │ ├── controller │ │ ├── PageController.java │ │ ├── advice │ │ │ └── DataExceptionAdvice.java │ │ └── rest │ │ │ ├── AreaController.java │ │ │ ├── ChargedListController.java │ │ │ ├── ChargingAccountController.java │ │ │ ├── ChargingPriceController.java │ │ │ ├── ChargingStatisticController.java │ │ │ ├── ChargingUserController.java │ │ │ ├── GroupTypeController.java │ │ │ ├── MemberController.java │ │ │ ├── OrganizationController.java │ │ │ ├── PileController.java │ │ │ ├── PileGroupController.java │ │ │ ├── PileProductController.java │ │ │ └── PileStationController.java │ │ ├── dao │ │ ├── AreaDao.java │ │ ├── ChargedListDao.java │ │ ├── ChargingAccountDao.java │ │ ├── ChargingDataDao.java │ │ ├── ChargingPriceDao.java │ │ ├── ChargingStatisticDao.java │ │ ├── ChargingUserDao.java │ │ ├── DeviceStateDao.java │ │ ├── GroupTypeDao.java │ │ ├── MemberDao.java │ │ ├── OrganizationDao.java │ │ ├── PileDao.java │ │ ├── PileGroupDao.java │ │ ├── PileProductDao.java │ │ ├── PileStationDao.java │ │ ├── PositionDao.java │ │ └── VehicleDao.java │ │ ├── entity │ │ ├── Area.java │ │ ├── ChargedList.java │ │ ├── ChargingData.java │ │ ├── ChargingPrice.java │ │ ├── ElectricVehicle.java │ │ ├── Garage.java │ │ ├── GroupType.java │ │ ├── Member.java │ │ ├── Organization.java │ │ ├── Pile.java │ │ ├── PileGroup.java │ │ ├── PileProduct.java │ │ ├── PileStation.java │ │ └── Position.java │ │ ├── enums │ │ ├── ChargingStateEnum.java │ │ ├── DeviceStateEnum.java │ │ └── PayMethodEnum.java │ │ ├── exception │ │ ├── DataException.java │ │ ├── DataExceptionEnum.java │ │ └── ExceptionResponse.java │ │ ├── interceptor │ │ ├── UserAccessInterceptor.java │ │ └── UserLoginInterceptor.java │ │ ├── model │ │ ├── AccountDetail.java │ │ ├── AreaAndStations.java │ │ ├── ChargedFeeList.java │ │ ├── ChargedListInfo.java │ │ ├── ChargingDataInfo.java │ │ ├── ChargingFeeInfo.java │ │ ├── ChargingPriceInfo.java │ │ ├── ChargingStatistic.java │ │ ├── ChargingStatisticRequireMent.java │ │ ├── ChargingUser.java │ │ ├── DeviceStateInfo.java │ │ ├── GroupAndPositon.java │ │ ├── GroupCityMessage.java │ │ ├── GroupProvinceMessage.java │ │ ├── GroupRequireMent.java │ │ ├── GroupResource.java │ │ ├── GroupStationMessage.java │ │ ├── GroupZoneMessage.java │ │ ├── PileChargingState.java │ │ ├── PileGroupInfo.java │ │ ├── PileGroupMessage.java │ │ ├── PileInfo.java │ │ ├── PileStationInfo.java │ │ ├── PileStationMessage.java │ │ ├── PileStatistic.java │ │ ├── PileStatisticRequireMent.java │ │ ├── StationAndElectrity.java │ │ ├── StationAndPosition.java │ │ ├── StationStatistic.java │ │ ├── StationStatisticRequireMent.java │ │ ├── UserAccount.java │ │ ├── UserAccountDetail.java │ │ └── VehicleInfo.java │ │ ├── service │ │ ├── AreaService.java │ │ ├── ChargedListService.java │ │ ├── ChargingAccountService.java │ │ ├── ChargingDataService.java │ │ ├── ChargingPriceService.java │ │ ├── ChargingStatisticService.java │ │ ├── DeviceStateService.java │ │ ├── GroupTypeService.java │ │ ├── Impl │ │ │ ├── AreaServiceImpl.java │ │ │ ├── ChargedListServiceImpl.java │ │ │ ├── ChargingAccountServiceImpl.java │ │ │ ├── ChargingDataServiceImpl.java │ │ │ ├── ChargingPriceImpl.java │ │ │ ├── ChargingStatisticServiceImpl.java │ │ │ ├── DeviceStateServiceImpl.java │ │ │ ├── GroupTypeServiceImpl.java │ │ │ ├── MemberServiceImpl.java │ │ │ ├── OrganizationServiceImpl.java │ │ │ ├── PileGroupServiceImpl.java │ │ │ ├── PileProductServiceImpl.java │ │ │ ├── PileServiceImpl.java │ │ │ ├── PileStationServiceImpl.java │ │ │ ├── PositionServiceImpl.java │ │ │ ├── UserServiceImpl.java │ │ │ └── VehicleServiceImpl.java │ │ ├── MemberService.java │ │ ├── OrganizationService.java │ │ ├── PileGroupService.java │ │ ├── PileProductService.java │ │ ├── PileService.java │ │ ├── PileStationService.java │ │ ├── PositionService.java │ │ ├── UserService.java │ │ └── VehicleService.java │ │ └── util │ │ ├── DateUtil.java │ │ ├── DistanceUtil.java │ │ ├── EncryptUtil.java │ │ ├── PasswordUtil.java │ │ ├── ResponseModel.java │ │ └── StringUtil.java └── resources │ ├── application-dev.properties │ ├── application.properties │ ├── logback-spring.xml │ ├── mapper │ ├── Area.xml │ ├── ChargedList.xml │ ├── ChargingAccount.xml │ ├── ChargingData.xml │ ├── ChargingPrice.xml │ ├── ChargingUser.xml │ ├── DeviceState.xml │ ├── GroupType.xml │ ├── Member.xml │ ├── Organization.xml │ ├── Pile.xml │ ├── PileGroup.xml │ ├── PileProduct.xml │ ├── PileStation.xml │ ├── Position.xml │ ├── chargingStatistics.xml │ └── vehicle.xml │ ├── static │ ├── css │ │ ├── app.css │ │ ├── chargingStation.css │ │ ├── homepage.css │ │ └── regist.css │ ├── favicon.png │ ├── hpbg1.jpg │ ├── hpbg2.jpg │ ├── hpbg3.jpg │ ├── hpbg4.jpg │ ├── hpbg5.jpg │ ├── js │ │ ├── app.js │ │ ├── area.js │ │ ├── moment.min.js │ │ ├── pagejs │ │ │ ├── addChargingPile.js │ │ │ ├── addChargingPileGroup.js │ │ │ ├── addChargingStation.js │ │ │ ├── chargingDetails.js │ │ │ ├── chargingPile.js │ │ │ ├── chargingPileGroup.js │ │ │ ├── chargingPileStatistics.js │ │ │ ├── chargingPrice.js │ │ │ ├── chargingStation.js │ │ │ ├── chargingStation2.js │ │ │ ├── chargingStationStatistics.js │ │ │ ├── checkChargingPile.js │ │ │ ├── homepage.js │ │ │ ├── mapOfChargingStation.js │ │ │ ├── regist.js │ │ │ ├── updateChargingPile.js │ │ │ ├── updateChargingPileGroup.js │ │ │ └── updateChargingStation.js │ │ └── vue.js │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ └── layui.all.js │ ├── location.png │ ├── newspic1.jpg │ ├── newspic2.jpg │ ├── newspic3.jpg │ └── sign.png │ └── templates │ ├── addChargingPile.ftl │ ├── addChargingPileGroup.ftl │ ├── addChargingStation.ftl │ ├── chargingDetails.ftl │ ├── chargingPile.ftl │ ├── chargingPileGroup.ftl │ ├── chargingPileStatistics.ftl │ ├── chargingPrice.ftl │ ├── chargingStation.ftl │ ├── chargingStation2.ftl │ ├── chargingStationStatistics.ftl │ ├── checkChargingPile.ftl │ ├── components │ ├── footer.ftl │ ├── header.ftl │ ├── leftmenu.ftl │ ├── script.ftl │ └── topnav.ftl │ ├── homepage.ftl │ ├── mapOfChargingStation.ftl │ ├── regist.ftl │ ├── updateChargingPile.ftl │ ├── updateChargingPileGroup.ftl │ └── updateChargingStation.ftl └── test └── java └── com └── jczc └── operatorweb ├── OperatorWebApplicationTests.java ├── dao ├── AreaDaoTest.java ├── ChargedListDaoTest.java ├── ChargingPriceDaoTest.java ├── ChargingUserDaoTest.java ├── GroupTypeDaoTest.java ├── PileDaoTest.java ├── PileGroupDaoTest.java ├── PileProductDaoTest.java ├── PileStationDaoTest.java ├── PositionDaoTest.java └── chargingStatisticDaoTest.java └── service ├── ChargedListServiceTest.java ├── ChargingAccountServiceTest.java ├── ChargingDataServiceTest.java └── Impl └── PileStationServiceImplTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # operator-web 2 | ### 本项目使用springboot + mybatis开发,前端采用Vue.js进行数据绑定 以及 layui作为ui框架。 3 | ### 具有实际应用背景 4 | -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/OperatorWebApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/OperatorWebApplication.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/config/UserAccessConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/config/UserAccessConfig.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/PageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/PageController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/advice/DataExceptionAdvice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/advice/DataExceptionAdvice.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/AreaController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/AreaController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/ChargedListController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/ChargedListController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/ChargingAccountController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/ChargingAccountController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/ChargingPriceController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/ChargingPriceController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/ChargingStatisticController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/ChargingStatisticController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/ChargingUserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/ChargingUserController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/GroupTypeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/GroupTypeController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/MemberController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/MemberController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/OrganizationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/OrganizationController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/PileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/PileController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/PileGroupController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/PileGroupController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/PileProductController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/PileProductController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/controller/rest/PileStationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/controller/rest/PileStationController.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/AreaDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/AreaDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/ChargedListDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/ChargedListDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/ChargingAccountDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/ChargingAccountDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/ChargingDataDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/ChargingDataDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/ChargingPriceDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/ChargingPriceDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/ChargingStatisticDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/ChargingStatisticDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/ChargingUserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/ChargingUserDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/DeviceStateDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/DeviceStateDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/GroupTypeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/GroupTypeDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/MemberDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/MemberDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/OrganizationDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/OrganizationDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/PileDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/PileDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/PileGroupDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/PileGroupDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/PileProductDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/PileProductDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/PileStationDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/PileStationDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/PositionDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/PositionDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/dao/VehicleDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/dao/VehicleDao.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/Area.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/Area.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/ChargedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/ChargedList.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/ChargingData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/ChargingData.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/ChargingPrice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/ChargingPrice.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/ElectricVehicle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/ElectricVehicle.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/Garage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/Garage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/GroupType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/GroupType.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/Member.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/Member.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/Organization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/Organization.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/Pile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/Pile.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/PileGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/PileGroup.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/PileProduct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/PileProduct.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/PileStation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/PileStation.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/entity/Position.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/entity/Position.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/enums/ChargingStateEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/enums/ChargingStateEnum.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/enums/DeviceStateEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/enums/DeviceStateEnum.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/enums/PayMethodEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/enums/PayMethodEnum.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/exception/DataException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/exception/DataException.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/exception/DataExceptionEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/exception/DataExceptionEnum.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/exception/ExceptionResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/exception/ExceptionResponse.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/interceptor/UserAccessInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/interceptor/UserAccessInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/interceptor/UserLoginInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/interceptor/UserLoginInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/AccountDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/AccountDetail.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/AreaAndStations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/AreaAndStations.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargedFeeList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargedFeeList.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargedListInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargedListInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargingDataInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargingDataInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargingFeeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargingFeeInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargingPriceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargingPriceInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargingStatistic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargingStatistic.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargingStatisticRequireMent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargingStatisticRequireMent.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/ChargingUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/ChargingUser.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/DeviceStateInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/DeviceStateInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupAndPositon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupAndPositon.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupCityMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupCityMessage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupProvinceMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupProvinceMessage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupRequireMent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupRequireMent.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupResource.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupStationMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupStationMessage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/GroupZoneMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/GroupZoneMessage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileChargingState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileChargingState.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileGroupInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileGroupInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileGroupMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileGroupMessage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileStationInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileStationInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileStationMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileStationMessage.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileStatistic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileStatistic.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/PileStatisticRequireMent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/PileStatisticRequireMent.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/StationAndElectrity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/StationAndElectrity.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/StationAndPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/StationAndPosition.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/StationStatistic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/StationStatistic.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/StationStatisticRequireMent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/StationStatisticRequireMent.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/UserAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/UserAccount.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/UserAccountDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/UserAccountDetail.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/model/VehicleInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/model/VehicleInfo.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/AreaService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/AreaService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/ChargedListService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/ChargedListService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/ChargingAccountService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/ChargingAccountService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/ChargingDataService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/ChargingDataService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/ChargingPriceService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/ChargingPriceService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/ChargingStatisticService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/ChargingStatisticService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/DeviceStateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/DeviceStateService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/GroupTypeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/GroupTypeService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/AreaServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/AreaServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/ChargedListServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/ChargedListServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/ChargingAccountServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/ChargingAccountServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/ChargingDataServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/ChargingDataServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/ChargingPriceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/ChargingPriceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/ChargingStatisticServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/ChargingStatisticServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/DeviceStateServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/DeviceStateServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/GroupTypeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/GroupTypeServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/MemberServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/MemberServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/OrganizationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/OrganizationServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/PileGroupServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/PileGroupServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/PileProductServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/PileProductServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/PileServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/PileServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/PileStationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/PileStationServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/PositionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/PositionServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/Impl/VehicleServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/Impl/VehicleServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/MemberService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/MemberService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/OrganizationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/OrganizationService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/PileGroupService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/PileGroupService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/PileProductService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/PileProductService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/PileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/PileService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/PileStationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/PileStationService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/PositionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/PositionService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/UserService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/service/VehicleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/service/VehicleService.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/util/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/util/DateUtil.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/util/DistanceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/util/DistanceUtil.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/util/EncryptUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/util/EncryptUtil.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/util/PasswordUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/util/PasswordUtil.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/util/ResponseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/util/ResponseModel.java -------------------------------------------------------------------------------- /src/main/java/com/jczc/operatorweb/util/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/java/com/jczc/operatorweb/util/StringUtil.java -------------------------------------------------------------------------------- /src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/application-dev.properties -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/Area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/Area.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChargedList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/ChargedList.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChargingAccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/ChargingAccount.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChargingData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/ChargingData.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChargingPrice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/ChargingPrice.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChargingUser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/ChargingUser.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/DeviceState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/DeviceState.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/GroupType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/GroupType.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/Member.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/Member.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/Organization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/Organization.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/Pile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/Pile.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/PileGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/PileGroup.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/PileProduct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/PileProduct.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/PileStation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/PileStation.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/Position.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/Position.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/chargingStatistics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/chargingStatistics.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/vehicle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/mapper/vehicle.xml -------------------------------------------------------------------------------- /src/main/resources/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/css/app.css -------------------------------------------------------------------------------- /src/main/resources/static/css/chargingStation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/css/chargingStation.css -------------------------------------------------------------------------------- /src/main/resources/static/css/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/css/homepage.css -------------------------------------------------------------------------------- /src/main/resources/static/css/regist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/css/regist.css -------------------------------------------------------------------------------- /src/main/resources/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/favicon.png -------------------------------------------------------------------------------- /src/main/resources/static/hpbg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/hpbg1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/hpbg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/hpbg2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/hpbg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/hpbg3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/hpbg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/hpbg4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/hpbg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/hpbg5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/app.js -------------------------------------------------------------------------------- /src/main/resources/static/js/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/area.js -------------------------------------------------------------------------------- /src/main/resources/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/moment.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/addChargingPile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/addChargingPile.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/addChargingPileGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/addChargingPileGroup.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/addChargingStation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/addChargingStation.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingDetails.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingPile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingPile.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingPileGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingPileGroup.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingPileStatistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingPileStatistics.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingPrice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingPrice.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingStation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingStation.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingStation2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingStation2.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/chargingStationStatistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/chargingStationStatistics.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/checkChargingPile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/checkChargingPile.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/homepage.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/mapOfChargingStation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/mapOfChargingStation.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/regist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/regist.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/updateChargingPile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/updateChargingPile.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/updateChargingPileGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/updateChargingPileGroup.js -------------------------------------------------------------------------------- /src/main/resources/static/js/pagejs/updateChargingStation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/pagejs/updateChargingStation.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/js/vue.js -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/layui.css -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/code.css -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/font/iconfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/layui/layui.all.js -------------------------------------------------------------------------------- /src/main/resources/static/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/location.png -------------------------------------------------------------------------------- /src/main/resources/static/newspic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/newspic1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/newspic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/newspic2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/newspic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/newspic3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/static/sign.png -------------------------------------------------------------------------------- /src/main/resources/templates/addChargingPile.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/addChargingPile.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/addChargingPileGroup.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/addChargingPileGroup.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/addChargingStation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/addChargingStation.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingDetails.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingDetails.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingPile.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingPile.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingPileGroup.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingPileGroup.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingPileStatistics.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingPileStatistics.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingPrice.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingPrice.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingStation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingStation.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingStation2.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingStation2.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/chargingStationStatistics.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/chargingStationStatistics.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/checkChargingPile.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/checkChargingPile.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/components/footer.ftl: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/main/resources/templates/components/header.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/components/header.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/components/leftmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/components/leftmenu.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/components/script.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/components/script.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/components/topnav.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/components/topnav.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/homepage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/homepage.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/mapOfChargingStation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/mapOfChargingStation.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/regist.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/regist.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/updateChargingPile.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/updateChargingPile.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/updateChargingPileGroup.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/updateChargingPileGroup.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/updateChargingStation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/main/resources/templates/updateChargingStation.ftl -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/OperatorWebApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/OperatorWebApplicationTests.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/AreaDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/AreaDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/ChargedListDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/ChargedListDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/ChargingPriceDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/ChargingPriceDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/ChargingUserDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/ChargingUserDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/GroupTypeDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/GroupTypeDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/PileDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/PileDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/PileGroupDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/PileGroupDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/PileProductDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/PileProductDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/PileStationDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/PileStationDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/PositionDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/PositionDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/dao/chargingStatisticDaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/dao/chargingStatisticDaoTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/service/ChargedListServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/service/ChargedListServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/service/ChargingAccountServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/service/ChargingAccountServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/service/ChargingDataServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/service/ChargingDataServiceTest.java -------------------------------------------------------------------------------- /src/test/java/com/jczc/operatorweb/service/Impl/PileStationServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yurisa/operator-web/HEAD/src/test/java/com/jczc/operatorweb/service/Impl/PileStationServiceImplTest.java --------------------------------------------------------------------------------