gitextract_m6p0u8d2/ ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── application/ │ ├── .htaccess │ ├── admin/ │ │ ├── config.php │ │ ├── controller/ │ │ │ ├── Base.php │ │ │ ├── Bike.php │ │ │ ├── Charge.php │ │ │ ├── Index.php │ │ │ ├── Record.php │ │ │ ├── Trouble.php │ │ │ └── User.php │ │ ├── model/ │ │ │ ├── Bike.php │ │ │ ├── BikeTrouble.php │ │ │ ├── Charge.php │ │ │ ├── Record.php │ │ │ ├── TroubleCate.php │ │ │ ├── TroubleRecord.php │ │ │ └── User.php │ │ └── view/ │ │ ├── bike/ │ │ │ ├── add.html │ │ │ └── index.html │ │ ├── charge/ │ │ │ └── index.html │ │ ├── index/ │ │ │ └── index.html │ │ ├── public/ │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── menu.html │ │ ├── record/ │ │ │ └── index.html │ │ ├── trouble/ │ │ │ ├── add.html │ │ │ ├── index.html │ │ │ └── troublecate.html │ │ └── user/ │ │ └── index.html │ ├── api/ │ │ ├── controller/ │ │ │ └── v1/ │ │ │ ├── Base.php │ │ │ ├── Bike.php │ │ │ ├── Token.php │ │ │ ├── TroubleCate.php │ │ │ ├── TroubleRecord.php │ │ │ └── User.php │ │ ├── model/ │ │ │ ├── Base.php │ │ │ ├── Bike.php │ │ │ ├── BikeTrouble.php │ │ │ ├── Charge.php │ │ │ ├── Record.php │ │ │ ├── TroubleCate.php │ │ │ ├── TroubleRecord.php │ │ │ └── User.php │ │ ├── service/ │ │ │ ├── Token.php │ │ │ └── UserToken.php │ │ └── validate/ │ │ ├── AddressNews.php │ │ ├── AppTokenGet.php │ │ ├── BaseValidate.php │ │ ├── Count.php │ │ ├── IDCollection.php │ │ ├── IsMustBePostiveInt.php │ │ ├── OrderPlace.php │ │ ├── PagingParameter.php │ │ └── TokenGet.php │ ├── command.php │ ├── common.php │ ├── config.php │ ├── database.php │ ├── extra/ │ │ ├── map.php │ │ ├── pagination.php │ │ ├── queue.php │ │ ├── redis.php │ │ ├── secure.php │ │ ├── setting.php │ │ ├── tx.php │ │ └── wx.php │ ├── index/ │ │ └── controller/ │ │ └── Index.php │ ├── lib/ │ │ └── exception/ │ │ ├── BaseException.php │ │ ├── BikeException.php │ │ ├── ExceptionHandler.php │ │ ├── ParameterException.php │ │ ├── SuccessMessage.php │ │ ├── TokenException.php │ │ ├── UserException.php │ │ └── WxChatException.php │ ├── route.php │ └── tags.php ├── build.php ├── composer.json ├── extend/ │ ├── .gitignore │ ├── Map.php │ ├── My/ │ │ └── RedisPackage.php │ ├── TxMap.php │ └── Weixin.php ├── ofo 无微信支付/ │ ├── README.md │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── pages/ │ │ ├── billing/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── charge/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── index/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── input/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── logs/ │ │ │ ├── logs.js │ │ │ ├── logs.json │ │ │ ├── logs.wxml │ │ │ └── logs.wxss │ │ ├── my/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── pay/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── scanresult/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── unlock/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ ├── wallet/ │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── warn/ │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── project.config.json │ └── utils/ │ ├── av-weapp-min.js │ ├── base.js │ ├── config.js │ └── util.js ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── index.php │ ├── robots.txt │ ├── router.php │ └── static/ │ ├── .gitignore │ ├── admin/ │ │ ├── common.css │ │ └── js/ │ │ ├── common.js │ │ └── dialog.js │ ├── h-ui/ │ │ ├── css/ │ │ │ ├── H-ui.css │ │ │ ├── H-ui.ie.css │ │ │ └── H-ui.reset.css │ │ └── js/ │ │ └── H-ui.js │ ├── h-ui.admin/ │ │ ├── css/ │ │ │ ├── H-ui.admin.css │ │ │ ├── H-ui.login.css │ │ │ └── style.css │ │ ├── js/ │ │ │ ├── H-ui.admin.js │ │ │ └── de_DE.txt │ │ └── skin/ │ │ ├── blue/ │ │ │ └── skin.css │ │ ├── default/ │ │ │ └── skin.css │ │ ├── green/ │ │ │ └── skin.css │ │ ├── orange/ │ │ │ └── skin.css │ │ ├── red/ │ │ │ └── skin.css │ │ └── yellow/ │ │ └── skin.css │ ├── js/ │ │ ├── common.js │ │ ├── login.js │ │ └── order.js │ └── lib/ │ ├── DD_belatedPNG_0.0.8a-min.js │ ├── Hui-iconfont/ │ │ └── 1.0.8/ │ │ ├── demo.html │ │ └── iconfont.css │ ├── html5shiv.js │ ├── jquery/ │ │ └── 1.9.1/ │ │ └── jquery.js │ └── layer/ │ └── 2.4/ │ ├── layer.js │ └── skin/ │ └── layer.css ├── runtime/ │ └── .gitignore ├── tests/ │ ├── ExampleTest.php │ └── TestCase.php ├── think ├── thinkphp/ │ ├── .gitignore │ ├── .htaccess │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── README.md │ ├── base.php │ ├── codecov.yml │ ├── composer.json │ ├── console.php │ ├── convention.php │ ├── helper.php │ ├── lang/ │ │ └── zh-cn.php │ ├── library/ │ │ ├── think/ │ │ │ ├── App.php │ │ │ ├── Build.php │ │ │ ├── Cache.php │ │ │ ├── Collection.php │ │ │ ├── Config.php │ │ │ ├── Console.php │ │ │ ├── Controller.php │ │ │ ├── Cookie.php │ │ │ ├── Db.php │ │ │ ├── Debug.php │ │ │ ├── Env.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Hook.php │ │ │ ├── Lang.php │ │ │ ├── Loader.php │ │ │ ├── Log.php │ │ │ ├── Model.php │ │ │ ├── Paginator.php │ │ │ ├── Process.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── Session.php │ │ │ ├── Template.php │ │ │ ├── Url.php │ │ │ ├── Validate.php │ │ │ ├── View.php │ │ │ ├── cache/ │ │ │ │ ├── Driver.php │ │ │ │ └── driver/ │ │ │ │ ├── File.php │ │ │ │ ├── Lite.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Sqlite.php │ │ │ │ ├── Wincache.php │ │ │ │ └── Xcache.php │ │ │ ├── config/ │ │ │ │ └── driver/ │ │ │ │ ├── Ini.php │ │ │ │ ├── Json.php │ │ │ │ └── Xml.php │ │ │ ├── console/ │ │ │ │ ├── Command.php │ │ │ │ ├── Input.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Output.php │ │ │ │ ├── bin/ │ │ │ │ │ └── README.md │ │ │ │ ├── command/ │ │ │ │ │ ├── Build.php │ │ │ │ │ ├── Clear.php │ │ │ │ │ ├── Help.php │ │ │ │ │ ├── Lists.php │ │ │ │ │ ├── Make.php │ │ │ │ │ ├── make/ │ │ │ │ │ │ ├── Controller.php │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ └── stubs/ │ │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ │ ├── controller.stub │ │ │ │ │ │ └── model.stub │ │ │ │ │ └── optimize/ │ │ │ │ │ ├── Autoload.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Route.php │ │ │ │ │ └── Schema.php │ │ │ │ ├── input/ │ │ │ │ │ ├── Argument.php │ │ │ │ │ ├── Definition.php │ │ │ │ │ └── Option.php │ │ │ │ └── output/ │ │ │ │ ├── Ask.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Question.php │ │ │ │ ├── descriptor/ │ │ │ │ │ └── Console.php │ │ │ │ ├── driver/ │ │ │ │ │ ├── Buffer.php │ │ │ │ │ ├── Console.php │ │ │ │ │ └── Nothing.php │ │ │ │ ├── formatter/ │ │ │ │ │ ├── Stack.php │ │ │ │ │ └── Style.php │ │ │ │ └── question/ │ │ │ │ ├── Choice.php │ │ │ │ └── Confirmation.php │ │ │ ├── controller/ │ │ │ │ ├── Rest.php │ │ │ │ └── Yar.php │ │ │ ├── db/ │ │ │ │ ├── Builder.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Query.php │ │ │ │ ├── builder/ │ │ │ │ │ ├── Mysql.php │ │ │ │ │ ├── Pgsql.php │ │ │ │ │ ├── Sqlite.php │ │ │ │ │ └── Sqlsrv.php │ │ │ │ ├── connector/ │ │ │ │ │ ├── Mysql.php │ │ │ │ │ ├── Pgsql.php │ │ │ │ │ ├── Sqlite.php │ │ │ │ │ ├── Sqlsrv.php │ │ │ │ │ └── pgsql.sql │ │ │ │ └── exception/ │ │ │ │ ├── BindParamException.php │ │ │ │ ├── DataNotFoundException.php │ │ │ │ └── ModelNotFoundException.php │ │ │ ├── debug/ │ │ │ │ ├── Console.php │ │ │ │ └── Html.php │ │ │ ├── exception/ │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── DbException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── Handle.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpResponseException.php │ │ │ │ ├── PDOException.php │ │ │ │ ├── RouteNotFoundException.php │ │ │ │ ├── TemplateNotFoundException.php │ │ │ │ ├── ThrowableError.php │ │ │ │ └── ValidateException.php │ │ │ ├── log/ │ │ │ │ └── driver/ │ │ │ │ ├── File.php │ │ │ │ ├── Socket.php │ │ │ │ └── Test.php │ │ │ ├── model/ │ │ │ │ ├── Collection.php │ │ │ │ ├── Merge.php │ │ │ │ ├── Pivot.php │ │ │ │ ├── Relation.php │ │ │ │ └── relation/ │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphTo.php │ │ │ │ └── OneToOne.php │ │ │ ├── paginator/ │ │ │ │ └── driver/ │ │ │ │ └── Bootstrap.php │ │ │ ├── process/ │ │ │ │ ├── Builder.php │ │ │ │ ├── Utils.php │ │ │ │ ├── exception/ │ │ │ │ │ ├── Failed.php │ │ │ │ │ └── Timeout.php │ │ │ │ └── pipes/ │ │ │ │ ├── Pipes.php │ │ │ │ ├── Unix.php │ │ │ │ └── Windows.php │ │ │ ├── response/ │ │ │ │ ├── Json.php │ │ │ │ ├── Jsonp.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── View.php │ │ │ │ └── Xml.php │ │ │ ├── session/ │ │ │ │ └── driver/ │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Redis.php │ │ │ ├── template/ │ │ │ │ ├── TagLib.php │ │ │ │ ├── driver/ │ │ │ │ │ └── File.php │ │ │ │ └── taglib/ │ │ │ │ └── Cx.php │ │ │ └── view/ │ │ │ └── driver/ │ │ │ ├── Php.php │ │ │ └── Think.php │ │ └── traits/ │ │ ├── controller/ │ │ │ └── Jump.php │ │ ├── model/ │ │ │ └── SoftDelete.php │ │ └── think/ │ │ └── Instance.php │ ├── phpunit.xml │ ├── start.php │ └── tpl/ │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl └── vendor/ └── .gitignore