实例介绍
互联网支付时代,面对各种支付通道,接口定义混杂,轻支付为减轻用户对支付接口过度定义,仅需面向一套简洁接口即可实现多终端支付,极大的减少接口对接的时间和精力,并提供账户群管理及站群管理,轻支付系统支持:注册代理金\代理分润\多支付账户\二级提现\接口检测\故障自动切换\自定义扣量\手机支付\网页支付\扫码支付等功能;支持二次开发,易于拓展并提供免费升级服务; 官方地址:http://www.qianlicc.cc/
【实例截图】
【核心代码】
4744302543452909981.zip
├── fx_mid.sql
├── main
│ ├── Common
│ │ └── functions.php
│ ├── Conf
│ │ ├── convention.php
│ │ └── debug.php
│ ├── Lang
│ │ ├── en-us.php
│ │ ├── pt-br.php
│ │ ├── zh-cn.php
│ │ └── zh-tw.php
│ ├── Library
│ │ ├── Behavior
│ │ │ ├── BuildLiteBehavior.class.php
│ │ │ ├── CheckLangBehavior.class.php
│ │ │ ├── ContentReplaceBehavior.class.php
│ │ │ ├── ParseTemplateBehavior.class.php
│ │ │ ├── ReadHtmlCacheBehavior.class.php
│ │ │ ├── ShowPageTraceBehavior.class.php
│ │ │ ├── ShowRuntimeBehavior.class.php
│ │ │ ├── TokenBuildBehavior.class.php
│ │ │ └── WriteHtmlCacheBehavior.class.php
│ │ ├── Org
│ │ ├── Think
│ │ │ ├── App.class.php
│ │ │ ├── Build.class.php
│ │ │ ├── Cache
│ │ │ │ └── Driver
│ │ │ │ ├── Apachenote.class.php
│ │ │ │ ├── Apc.class.php
│ │ │ │ ├── Db.class.php
│ │ │ │ ├── Eaccelerator.class.php
│ │ │ │ ├── File.class.php
│ │ │ │ ├── Memcache.class.php
│ │ │ │ ├── Memcached.class.php
│ │ │ │ ├── Memcachesae.class.php
│ │ │ │ ├── Redis.class.php
│ │ │ │ ├── Shmop.class.php
│ │ │ │ ├── Sqlite.class.php
│ │ │ │ ├── Wincache.class.php
│ │ │ │ └── Xcache.class.php
│ │ │ ├── Cache.class.php
│ │ │ ├── Controller.class.php
│ │ │ ├── Db
│ │ │ │ ├── Driver
│ │ │ │ │ ├── Firebird.class.php
│ │ │ │ │ ├── Mongo.class.php
│ │ │ │ │ ├── Mysql.class.php
│ │ │ │ │ ├── Oracle.class.php
│ │ │ │ │ ├── Pgsql.class.php
│ │ │ │ │ ├── Sqlite.class.php
│ │ │ │ │ └── Sqlsrv.class.php
│ │ │ │ ├── Driver.class.php
│ │ │ │ └── Lite.class.php
│ │ │ ├── Db.class.php
│ │ │ ├── Dispatcher.class.php
│ │ │ ├── Exception.class.php
│ │ │ ├── Hook.class.php
│ │ │ ├── Log
│ │ │ │ └── Driver
│ │ │ │ ├── File.class.php
│ │ │ │ └── Sae.class.php
│ │ │ ├── Log.class.php
│ │ │ ├── Model.class.php
│ │ │ ├── Route.class.php
│ │ │ ├── Storage
│ │ │ │ └── Driver
│ │ │ │ ├── File.class.php
│ │ │ │ └── Sae.class.php
│ │ │ ├── Storage.class.php
│ │ │ ├── Template
│ │ │ │ ├── Driver
│ │ │ │ │ ├── Ease.class.php
│ │ │ │ │ ├── Lite.class.php
│ │ │ │ │ ├── Mobile.class.php
│ │ │ │ │ ├── Smart.class.php
│ │ │ │ │ └── Smarty.class.php
│ │ │ │ ├── TagLib
│ │ │ │ │ ├── Cx.class.php
│ │ │ │ │ └── Html.class.php
│ │ │ │ └── TagLib.class.php
│ │ │ ├── Template.class.php
│ │ │ ├── Think.class.php
│ │ │ └── View.class.php
│ │ └── Vendor
│ │ └── README.txt
│ ├── LICENSE.txt
│ ├── logo.png
│ ├── main.php
│ ├── Mode
│ │ └── common.php
│ └── Tpl
│ ├── dispatch_jump.tpl
│ ├── page_trace.tpl
│ └── think_exception.tpl
├── pay
│ ├── Common
│ │ ├── Api
│ │ │ ├── AlipayApi.class.php
│ │ │ ├── BaseApi.class.php
│ │ │ ├── QzfApi.class.php
│ │ │ └── WechatApi.class.php
│ │ ├── Common
│ │ │ ├── function.php
│ │ │ └── index.html
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ ├── index.html
│ │ │ └── local.php
│ │ ├── Controller
│ │ │ └── DefaultController.class.php
│ │ ├── index.html
│ │ ├── Logic
│ │ │ ├── AdminLogic.class.php
│ │ │ ├── AgentLogic.class.php
│ │ │ ├── ApiLogic.class.php
│ │ │ ├── ApistyleLogic.class.php
│ │ │ ├── BaseLogic.class.php
│ │ │ ├── DingdanLogic.class.php
│ │ │ ├── HomeLogic.class.php
│ │ │ ├── IndexLogic.class.php
│ │ │ ├── KaLogic.class.php
│ │ │ ├── KouLogic.class.php
│ │ │ ├── LogLogic.class.php
│ │ │ ├── LogsmsLogic.class.php
│ │ │ ├── MainLogic.class.php
│ │ │ ├── ParamLogic.class.php
│ │ │ ├── PayLogic.class.php
│ │ │ ├── UploadLogic.class.php
│ │ │ └── UserLogic.class.php
│ │ ├── Model
│ │ │ ├── AdminModel.class.php
│ │ │ ├── ApiDbModel.class.php
│ │ │ ├── BaseModel.class.php
│ │ │ ├── DingdanModel.class.php
│ │ │ ├── LogErrorModel.class.php
│ │ │ └── UserModel.class.php
│ │ ├── Tool
│ │ │ ├── DateHandle.class.php
│ │ │ ├── dysms
│ │ │ │ └── SignatureHelper.class.php
│ │ │ ├── Excel
│ │ │ │ ├── changelog.txt
│ │ │ │ ├── Classes
│ │ │ │ │ ├── PHPExcel
│ │ │ │ │ │ ├── Autoloader.php
│ │ │ │ │ │ ├── CachedObjectStorage
│ │ │ │ │ │ │ ├── APC.php
│ │ │ │ │ │ │ ├── CacheBase.php
│ │ │ │ │ │ │ ├── DiscISAM.php
│ │ │ │ │ │ │ ├── ICache.php
│ │ │ │ │ │ │ ├── Igbinary.php
│ │ │ │ │ │ │ ├── Memcache.php
│ │ │ │ │ │ │ ├── MemoryGZip.php
│ │ │ │ │ │ │ ├── Memory.php
│ │ │ │ │ │ │ ├── MemorySerialized.php
│ │ │ │ │ │ │ ├── PHPTemp.php
│ │ │ │ │ │ │ ├── SQLite3.php
│ │ │ │ │ │ │ ├── SQLite.php
│ │ │ │ │ │ │ └── Wincache.php
│ │ │ │ │ │ ├── CachedObjectStorageFactory.php
│ │ │ │ │ │ ├── CalcEngine
│ │ │ │ │ │ │ ├── CyclicReferenceStack.php
│ │ │ │ │ │ │ └── Logger.php
│ │ │ │ │ │ ├── Calculation
│ │ │ │ │ │ │ ├── Database.php
│ │ │ │ │ │ │ ├── DateTime.php
│ │ │ │ │ │ │ ├── Engineering.php
│ │ │ │ │ │ │ ├── ExceptionHandler.php
│ │ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ │ ├── Financial.php
│ │ │ │ │ │ │ ├── FormulaParser.php
│ │ │ │ │ │ │ ├── FormulaToken.php
│ │ │ │ │ │ │ ├── functionlist.txt
│ │ │ │ │ │ │ ├── Function.php
│ │ │ │ │ │ │ ├── Functions.php
│ │ │ │ │ │ │ ├── Logical.php
│ │ │ │ │ │ │ ├── LookupRef.php
│ │ │ │ │ │ │ ├── MathTrig.php
│ │ │ │ │ │ │ ├── Statistical.php
│ │ │ │ │ │ │ ├── TextData.php
│ │ │ │ │ │ │ └── Token
│ │ │ │ │ │ │ └── Stack.php
│ │ │ │ │ │ ├── Calculation.php
│ │ │ │ │ │ ├── Cell
│ │ │ │ │ │ │ ├── AdvancedValueBinder.php
│ │ │ │ │ │ │ ├── DataType.php
│ │ │ │ │ │ │ ├── DataValidation.php
│ │ │ │ │ │ │ ├── DefaultValueBinder.php
│ │ │ │ │ │ │ ├── Hyperlink.php
│ │ │ │ │ │ │ └── IValueBinder.php
│ │ │ │ │ │ ├── Cell.php
│ │ │ │ │ │ ├── Chart
│ │ │ │ │ │ │ ├── DataSeries.php
│ │ │ │ │ │ │ ├── DataSeriesValues.php
│ │ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ │ ├── Layout.php
│ │ │ │ │ │ │ ├── Legend.php
│ │ │ │ │ │ │ ├── PlotArea.php
│ │ │ │ │ │ │ ├── Renderer
│ │ │ │ │ │ │ │ ├── jpgraph.php
│ │ │ │ │ │ │ │ └── PHP Charting Libraries.txt
│ │ │ │ │ │ │ └── Title.php
│ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ ├── Comment.php
│ │ │ │ │ │ ├── DocumentProperties.php
│ │ │ │ │ │ ├── DocumentSecurity.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── HashTable.php
│ │ │ │ │ │ ├── IComparable.php
│ │ │ │ │ │ ├── IOFactory.php
│ │ │ │ │ │ ├── locale
│ │ │ │ │ │ │ ├── cs
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── da
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── de
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── en
│ │ │ │ │ │ │ │ └── uk
│ │ │ │ │ │ │ │ └── config
│ │ │ │ │ │ │ ├── es
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── fi
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── fr
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── hu
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── it
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── nl
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── no
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── pl
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── pt
│ │ │ │ │ │ │ │ ├── br
│ │ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── ru
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ ├── sv
│ │ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ │ └── tr
│ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ └── functions
│ │ │ │ │ │ ├── NamedRange.php
│ │ │ │ │ │ ├── Reader
│ │ │ │ │ │ │ ├── Abstract.php
│ │ │ │ │ │ │ ├── CSV.php
│ │ │ │ │ │ │ ├── DefaultReadFilter.php
│ │ │ │ │ │ │ ├── Excel2003XML.php
│ │ │ │ │ │ │ ├── Excel2007
│ │ │ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ │ │ └── Theme.php
│ │ │ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ │ │ ├── Excel5
│ │ │ │ │ │ │ │ └── Escher.php
│ │ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ │ ├── Gnumeric.php
│ │ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ │ ├── IReader.php
│ │ │ │ │ │ │ ├── IReadFilter.php
│ │ │ │ │ │ │ ├── OOCalc.php
│ │ │ │ │ │ │ └── SYLK.php
│ │ │ │ │ │ ├── ReferenceHelper.php
│ │ │ │ │ │ ├── RichText
│ │ │ │ │ │ │ ├── ITextElement.php
│ │ │ │ │ │ │ ├── Run.php
│ │ │ │ │ │ │ └── TextElement.php
│ │ │ │ │ │ ├── RichText.php
│ │ │ │ │ │ ├── Settings.php
│ │ │ │ │ │ ├── Shared
│ │ │ │ │ │ │ ├── CodePage.php
│ │ │ │ │ │ │ ├── Date.php
│ │ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ │ ├── Escher
│ │ │ │ │ │ │ │ ├── DgContainer
│ │ │ │ │ │ │ │ │ ├── SpgrContainer
│ │ │ │ │ │ │ │ │ │ └── SpContainer.php
│ │ │ │ │ │ │ │ │ └── SpgrContainer.php
│ │ │ │ │ │ │ │ ├── DgContainer.php
│ │ │ │ │ │ │ │ ├── DggContainer
│ │ │ │ │ │ │ │ │ ├── BstoreContainer
│ │ │ │ │ │ │ │ │ │ ├── BSE
│ │ │ │ │ │ │ │ │ │ │ └── Blip.php
│ │ │ │ │ │ │ │ │ │ └── BSE.php
│ │ │ │ │ │ │ │ │ └── BstoreContainer.php
│ │ │ │ │ │ │ │ └── DggContainer.php
│ │ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ │ ├── JAMA
│ │ │ │ │ │ │ │ ├── CHANGELOG.TXT
│ │ │ │ │ │ │ │ ├── CholeskyDecomposition.php
│ │ │ │ │ │ │ │ ├── EigenvalueDecomposition.php
│ │ │ │ │ │ │ │ ├── LUDecomposition.php
│ │ │ │ │ │ │ │ ├── Matrix.php
│ │ │ │ │ │ │ │ ├── QRDecomposition.php
│ │ │ │ │ │ │ │ ├── SingularValueDecomposition.php
│ │ │ │ │ │ │ │ └── utils
│ │ │ │ │ │ │ │ ├── Error.php
│ │ │ │ │ │ │ │ └── Maths.php
│ │ │ │ │ │ │ ├── OLE
│ │ │ │ │ │ │ │ ├── ChainedBlockStream.php
│ │ │ │ │ │ │ │ ├── PPS
│ │ │ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ │ │ └── Root.php
│ │ │ │ │ │ │ │ └── PPS.php
│ │ │ │ │ │ │ ├── OLE.php
│ │ │ │ │ │ │ ├── OLERead.php
│ │ │ │ │ │ │ ├── PasswordHasher.php
│ │ │ │ │ │ │ ├── PCLZip
│ │ │ │ │ │ │ │ ├── gnu-lgpl.txt
│ │ │ │ │ │ │ │ ├── pclzip.lib.php
│ │ │ │ │ │ │ │ └── readme.txt
│ │ │ │ │ │ │ ├── String.php
│ │ │ │ │ │ │ ├── TimeZone.php
│ │ │ │ │ │ │ ├── trend
│ │ │ │ │ │ │ │ ├── bestFitClass.php
│ │ │ │ │ │ │ │ ├── exponentialBestFitClass.php
│ │ │ │ │ │ │ │ ├── linearBestFitClass.php
│ │ │ │ │ │ │ │ ├── logarithmicBestFitClass.php
│ │ │ │ │ │ │ │ ├── polynomialBestFitClass.php
│ │ │ │ │ │ │ │ ├── powerBestFitClass.php
│ │ │ │ │ │ │ │ └── trendClass.php
│ │ │ │ │ │ │ ├── XMLWriter.php
│ │ │ │ │ │ │ ├── ZipArchive.php
│ │ │ │ │ │ │ └── ZipStreamWrapper.php
│ │ │ │ │ │ ├── Style
│ │ │ │ │ │ │ ├── Alignment.php
│ │ │ │ │ │ │ ├── Border.php
│ │ │ │ │ │ │ ├── Borders.php
│ │ │ │ │ │ │ ├── Color.php
│ │ │ │ │ │ │ ├── Conditional.php
│ │ │ │ │ │ │ ├── Fill.php
│ │ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ │ ├── NumberFormat.php
│ │ │ │ │ │ │ ├── Protection.php
│ │ │ │ │ │ │ └── Supervisor.php
│ │ │ │ │ │ ├── Style.php
│ │ │ │ │ │ ├── Worksheet
│ │ │ │ │ │ │ ├── AutoFilter
│ │ │ │ │ │ │ │ ├── Column
│ │ │ │ │ │ │ │ │ └── Rule.php
│ │ │ │ │ │ │ │ └── Column.php
│ │ │ │ │ │ │ ├── AutoFilter.php
│ │ │ │ │ │ │ ├── BaseDrawing.php
│ │ │ │ │ │ │ ├── CellIterator.php
│ │ │ │ │ │ │ ├── ColumnDimension.php
│ │ │ │ │ │ │ ├── Drawing
│ │ │ │ │ │ │ │ └── Shadow.php
│ │ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ │ ├── HeaderFooterDrawing.php
│ │ │ │ │ │ │ ├── HeaderFooter.php
│ │ │ │ │ │ │ ├── MemoryDrawing.php
│ │ │ │ │ │ │ ├── PageMargins.php
│ │ │ │ │ │ │ ├── PageSetup.php
│ │ │ │ │ │ │ ├── Protection.php
│ │ │ │ │ │ │ ├── RowDimension.php
│ │ │ │ │ │ │ ├── RowIterator.php
│ │ │ │ │ │ │ ├── Row.php
│ │ │ │ │ │ │ └── SheetView.php
│ │ │ │ │ │ ├── WorksheetIterator.php
│ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ └── Writer
│ │ │ │ │ │ ├── Abstract.php
│ │ │ │ │ │ ├── CSV.php
│ │ │ │ │ │ ├── Excel2007
│ │ │ │ │ │ │ ├── Chart.php
│ │ │ │ │ │ │ ├── Comments.php
│ │ │ │ │ │ │ ├── ContentTypes.php
│ │ │ │ │ │ │ ├── DocProps.php
│ │ │ │ │ │ │ ├── Drawing.php
│ │ │ │ │ │ │ ├── Rels.php
│ │ │ │ │ │ │ ├── StringTable.php
│ │ │ │ │ │ │ ├── Style.php
│ │ │ │ │ │ │ ├── Theme.php
│ │ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ │ └── WriterPart.php
│ │ │ │ │ │ ├── Excel2007.php
│ │ │ │ │ │ ├── Excel5
│ │ │ │ │ │ │ ├── BIFFwriter.php
│ │ │ │ │ │ │ ├── Escher.php
│ │ │ │ │ │ │ ├── Font.php
│ │ │ │ │ │ │ ├── Parser.php
│ │ │ │ │ │ │ ├── Workbook.php
│ │ │ │ │ │ │ ├── Worksheet.php
│ │ │ │ │ │ │ └── Xf.php
│ │ │ │ │ │ ├── Excel5.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ ├── IWriter.php
│ │ │ │ │ │ │ ├── Core.php
│ │ │ │ │ │ │ ├── DomPDF.php
│ │ │ │ │ │ │ ├── mPDF.php
│ │ │ │ │ │ │ └── tcPDF.php
│ │ │ │ │ │ └── PDF.php
│ │ │ │ │ └── PHPExcel.php
│ │ │ │ ├── install.txt
│ │ │ │ ├── license.txt
│ │ │ │ ├── oleread.inc
│ │ │ │ └── reader.php
│ │ │ ├── Image.class.php
│ │ │ ├── phpqrcode
│ │ │ │ ├── bindings
│ │ │ │ │ └── tcpdf
│ │ │ │ │ └── qrcode.php
│ │ │ │ ├── cache
│ │ │ │ │ ├── frame_10.dat
│ │ │ │ │ ├── frame_10.png
│ │ │ │ │ ├── frame_11.dat
│ │ │ │ │ ├── frame_11.png
│ │ │ │ │ ├── frame_12.dat
│ │ │ │ │ ├── frame_12.png
│ │ │ │ │ ├── frame_13.dat
│ │ │ │ │ ├── frame_13.png
│ │ │ │ │ ├── frame_14.dat
│ │ │ │ │ ├── frame_14.png
│ │ │ │ │ ├── frame_15.dat
│ │ │ │ │ ├── frame_15.png
│ │ │ │ │ ├── frame_16.dat
│ │ │ │ │ ├── frame_16.png
│ │ │ │ │ ├── frame_17.dat
│ │ │ │ │ ├── frame_17.png
│ │ │ │ │ ├── frame_18.dat
│ │ │ │ │ ├── frame_18.png
│ │ │ │ │ ├── frame_19.dat
│ │ │ │ │ ├── frame_19.png
│ │ │ │ │ ├── frame_1.dat
│ │ │ │ │ ├── frame_1.png
│ │ │ │ │ ├── frame_20.dat
│ │ │ │ │ ├── frame_20.png
│ │ │ │ │ ├── frame_21.dat
│ │ │ │ │ ├── frame_21.png
│ │ │ │ │ ├── frame_22.dat
│ │ │ │ │ ├── frame_22.png
│ │ │ │ │ ├── frame_23.dat
│ │ │ │ │ ├── frame_23.png
│ │ │ │ │ ├── frame_24.dat
│ │ │ │ │ ├── frame_24.png
│ │ │ │ │ ├── frame_25.dat
│ │ │ │ │ ├── frame_25.png
│ │ │ │ │ ├── frame_26.dat
│ │ │ │ │ ├── frame_26.png
│ │ │ │ │ ├── frame_27.dat
│ │ │ │ │ ├── frame_27.png
│ │ │ │ │ ├── frame_28.dat
│ │ │ │ │ ├── frame_28.png
│ │ │ │ │ ├── frame_29.dat
│ │ │ │ │ ├── frame_29.png
│ │ │ │ │ ├── frame_2.dat
│ │ │ │ │ ├── frame_2.png
│ │ │ │ │ ├── frame_30.dat
│ │ │ │ │ ├── frame_30.png
│ │ │ │ │ ├── frame_31.dat
│ │ │ │ │ ├── frame_31.png
│ │ │ │ │ ├── frame_32.dat
│ │ │ │ │ ├── frame_32.png
│ │ │ │ │ ├── frame_33.dat
│ │ │ │ │ ├── frame_33.png
│ │ │ │ │ ├── frame_34.dat
│ │ │ │ │ ├── frame_34.png
│ │ │ │ │ ├── frame_35.dat
│ │ │ │ │ ├── frame_35.png
│ │ │ │ │ ├── frame_36.dat
│ │ │ │ │ ├── frame_36.png
│ │ │ │ │ ├── frame_37.dat
│ │ │ │ │ ├── frame_37.png
│ │ │ │ │ ├── frame_38.dat
│ │ │ │ │ ├── frame_38.png
│ │ │ │ │ ├── frame_39.dat
│ │ │ │ │ ├── frame_39.png
│ │ │ │ │ ├── frame_3.dat
│ │ │ │ │ ├── frame_3.png
│ │ │ │ │ ├── frame_40.dat
│ │ │ │ │ ├── frame_40.png
│ │ │ │ │ ├── frame_4.dat
│ │ │ │ │ ├── frame_4.png
│ │ │ │ │ ├── frame_5.dat
│ │ │ │ │ ├── frame_5.png
│ │ │ │ │ ├── frame_6.dat
│ │ │ │ │ ├── frame_6.png
│ │ │ │ │ ├── frame_7.dat
│ │ │ │ │ ├── frame_7.png
│ │ │ │ │ ├── frame_8.dat
│ │ │ │ │ ├── frame_8.png
│ │ │ │ │ ├── frame_9.dat
│ │ │ │ │ ├── frame_9.png
│ │ │ │ │ ├── mask_0
│ │ │ │ │ │ ├── mask_101_0.dat
│ │ │ │ │ │ ├── mask_105_0.dat
│ │ │ │ │ │ ├── mask_109_0.dat
│ │ │ │ │ │ ├── mask_113_0.dat
│ │ │ │ │ │ ├── mask_117_0.dat
│ │ │ │ │ │ ├── mask_121_0.dat
│ │ │ │ │ │ ├── mask_125_0.dat
│ │ │ │ │ │ ├── mask_129_0.dat
│ │ │ │ │ │ ├── mask_133_0.dat
│ │ │ │ │ │ ├── mask_137_0.dat
│ │ │ │ │ │ ├── mask_141_0.dat
│ │ │ │ │ │ ├── mask_145_0.dat
│ │ │ │ │ │ ├── mask_149_0.dat
│ │ │ │ │ │ ├── mask_153_0.dat
│ │ │ │ │ │ ├── mask_157_0.dat
│ │ │ │ │ │ ├── mask_161_0.dat
│ │ │ │ │ │ ├── mask_165_0.dat
│ │ │ │ │ │ ├── mask_169_0.dat
│ │ │ │ │ │ ├── mask_173_0.dat
│ │ │ │ │ │ ├── mask_177_0.dat
│ │ │ │ │ │ ├── mask_21_0.dat
│ │ │ │ │ │ ├── mask_25_0.dat
│ │ │ │ │ │ ├── mask_29_0.dat
│ │ │ │ │ │ ├── mask_33_0.dat
│ │ │ │ │ │ ├── mask_37_0.dat
│ │ │ │ │ │ ├── mask_41_0.dat
│ │ │ │ │ │ ├── mask_45_0.dat
│ │ │ │ │ │ ├── mask_49_0.dat
│ │ │ │ │ │ ├── mask_53_0.dat
│ │ │ │ │ │ ├── mask_57_0.dat
│ │ │ │ │ │ ├── mask_61_0.dat
│ │ │ │ │ │ ├── mask_65_0.dat
│ │ │ │ │ │ ├── mask_69_0.dat
│ │ │ │ │ │ ├── mask_73_0.dat
│ │ │ │ │ │ ├── mask_77_0.dat
│ │ │ │ │ │ ├── mask_81_0.dat
│ │ │ │ │ │ ├── mask_85_0.dat
│ │ │ │ │ │ ├── mask_89_0.dat
│ │ │ │ │ │ ├── mask_93_0.dat
│ │ │ │ │ │ └── mask_97_0.dat
│ │ │ │ │ ├── mask_1
│ │ │ │ │ │ ├── mask_101_1.dat
│ │ │ │ │ │ ├── mask_105_1.dat
│ │ │ │ │ │ ├── mask_109_1.dat
│ │ │ │ │ │ ├── mask_113_1.dat
│ │ │ │ │ │ ├── mask_117_1.dat
│ │ │ │ │ │ ├── mask_121_1.dat
│ │ │ │ │ │ ├── mask_125_1.dat
│ │ │ │ │ │ ├── mask_129_1.dat
│ │ │ │ │ │ ├── mask_133_1.dat
│ │ │ │ │ │ ├── mask_137_1.dat
│ │ │ │ │ │ ├── mask_141_1.dat
│ │ │ │ │ │ ├── mask_145_1.dat
│ │ │ │ │ │ ├── mask_149_1.dat
│ │ │ │ │ │ ├── mask_153_1.dat
│ │ │ │ │ │ ├── mask_157_1.dat
│ │ │ │ │ │ ├── mask_161_1.dat
│ │ │ │ │ │ ├── mask_165_1.dat
│ │ │ │ │ │ ├── mask_169_1.dat
│ │ │ │ │ │ ├── mask_173_1.dat
│ │ │ │ │ │ ├── mask_177_1.dat
│ │ │ │ │ │ ├── mask_21_1.dat
│ │ │ │ │ │ ├── mask_25_1.dat
│ │ │ │ │ │ ├── mask_29_1.dat
│ │ │ │ │ │ ├── mask_33_1.dat
│ │ │ │ │ │ ├── mask_37_1.dat
│ │ │ │ │ │ ├── mask_41_1.dat
│ │ │ │ │ │ ├── mask_45_1.dat
│ │ │ │ │ │ ├── mask_49_1.dat
│ │ │ │ │ │ ├── mask_53_1.dat
│ │ │ │ │ │ ├── mask_57_1.dat
│ │ │ │ │ │ ├── mask_61_1.dat
│ │ │ │ │ │ ├── mask_65_1.dat
│ │ │ │ │ │ ├── mask_69_1.dat
│ │ │ │ │ │ ├── mask_73_1.dat
│ │ │ │ │ │ ├── mask_77_1.dat
│ │ │ │ │ │ ├── mask_81_1.dat
│ │ │ │ │ │ ├── mask_85_1.dat
│ │ │ │ │ │ ├── mask_89_1.dat
│ │ │ │ │ │ ├── mask_93_1.dat
│ │ │ │ │ │ └── mask_97_1.dat
│ │ │ │ │ ├── mask_2
│ │ │ │ │ │ ├── mask_101_2.dat
│ │ │ │ │ │ ├── mask_105_2.dat
│ │ │ │ │ │ ├── mask_109_2.dat
│ │ │ │ │ │ ├── mask_113_2.dat
│ │ │ │ │ │ ├── mask_117_2.dat
│ │ │ │ │ │ ├── mask_121_2.dat
│ │ │ │ │ │ ├── mask_125_2.dat
│ │ │ │ │ │ ├── mask_129_2.dat
│ │ │ │ │ │ ├── mask_133_2.dat
│ │ │ │ │ │ ├── mask_137_2.dat
│ │ │ │ │ │ ├── mask_141_2.dat
│ │ │ │ │ │ ├── mask_145_2.dat
│ │ │ │ │ │ ├── mask_149_2.dat
│ │ │ │ │ │ ├── mask_153_2.dat
│ │ │ │ │ │ ├── mask_157_2.dat
│ │ │ │ │ │ ├── mask_161_2.dat
│ │ │ │ │ │ ├── mask_165_2.dat
│ │ │ │ │ │ ├── mask_169_2.dat
│ │ │ │ │ │ ├── mask_173_2.dat
│ │ │ │ │ │ ├── mask_177_2.dat
│ │ │ │ │ │ ├── mask_21_2.dat
│ │ │ │ │ │ ├── mask_25_2.dat
│ │ │ │ │ │ ├── mask_29_2.dat
│ │ │ │ │ │ ├── mask_33_2.dat
│ │ │ │ │ │ ├── mask_37_2.dat
│ │ │ │ │ │ ├── mask_41_2.dat
│ │ │ │ │ │ ├── mask_45_2.dat
│ │ │ │ │ │ ├── mask_49_2.dat
│ │ │ │ │ │ ├── mask_53_2.dat
│ │ │ │ │ │ ├── mask_57_2.dat
│ │ │ │ │ │ ├── mask_61_2.dat
│ │ │ │ │ │ ├── mask_65_2.dat
│ │ │ │ │ │ ├── mask_69_2.dat
│ │ │ │ │ │ ├── mask_73_2.dat
│ │ │ │ │ │ ├── mask_77_2.dat
│ │ │ │ │ │ ├── mask_81_2.dat
│ │ │ │ │ │ ├── mask_85_2.dat
│ │ │ │ │ │ ├── mask_89_2.dat
│ │ │ │ │ │ ├── mask_93_2.dat
│ │ │ │ │ │ └── mask_97_2.dat
│ │ │ │ │ ├── mask_3
│ │ │ │ │ │ ├── mask_101_3.dat
│ │ │ │ │ │ ├── mask_105_3.dat
│ │ │ │ │ │ ├── mask_109_3.dat
│ │ │ │ │ │ ├── mask_113_3.dat
│ │ │ │ │ │ ├── mask_117_3.dat
│ │ │ │ │ │ ├── mask_121_3.dat
│ │ │ │ │ │ ├── mask_125_3.dat
│ │ │ │ │ │ ├── mask_129_3.dat
│ │ │ │ │ │ ├── mask_133_3.dat
│ │ │ │ │ │ ├── mask_137_3.dat
│ │ │ │ │ │ ├── mask_141_3.dat
│ │ │ │ │ │ ├── mask_145_3.dat
│ │ │ │ │ │ ├── mask_149_3.dat
│ │ │ │ │ │ ├── mask_153_3.dat
│ │ │ │ │ │ ├── mask_157_3.dat
│ │ │ │ │ │ ├── mask_161_3.dat
│ │ │ │ │ │ ├── mask_165_3.dat
│ │ │ │ │ │ ├── mask_169_3.dat
│ │ │ │ │ │ ├── mask_173_3.dat
│ │ │ │ │ │ ├── mask_177_3.dat
│ │ │ │ │ │ ├── mask_21_3.dat
│ │ │ │ │ │ ├── mask_25_3.dat
│ │ │ │ │ │ ├── mask_29_3.dat
│ │ │ │ │ │ ├── mask_33_3.dat
│ │ │ │ │ │ ├── mask_37_3.dat
│ │ │ │ │ │ ├── mask_41_3.dat
│ │ │ │ │ │ ├── mask_45_3.dat
│ │ │ │ │ │ ├── mask_49_3.dat
│ │ │ │ │ │ ├── mask_53_3.dat
│ │ │ │ │ │ ├── mask_57_3.dat
│ │ │ │ │ │ ├── mask_61_3.dat
│ │ │ │ │ │ ├── mask_65_3.dat
│ │ │ │ │ │ ├── mask_69_3.dat
│ │ │ │ │ │ ├── mask_73_3.dat
│ │ │ │ │ │ ├── mask_77_3.dat
│ │ │ │ │ │ ├── mask_81_3.dat
│ │ │ │ │ │ ├── mask_85_3.dat
│ │ │ │ │ │ ├── mask_89_3.dat
│ │ │ │ │ │ ├── mask_93_3.dat
│ │ │ │ │ │ └── mask_97_3.dat
│ │ │ │ │ ├── mask_4
│ │ │ │ │ │ ├── mask_101_4.dat
│ │ │ │ │ │ ├── mask_105_4.dat
│ │ │ │ │ │ ├── mask_109_4.dat
│ │ │ │ │ │ ├── mask_113_4.dat
│ │ │ │ │ │ ├── mask_117_4.dat
│ │ │ │ │ │ ├── mask_121_4.dat
│ │ │ │ │ │ ├── mask_125_4.dat
│ │ │ │ │ │ ├── mask_129_4.dat
│ │ │ │ │ │ ├── mask_133_4.dat
│ │ │ │ │ │ ├── mask_137_4.dat
│ │ │ │ │ │ ├── mask_141_4.dat
│ │ │ │ │ │ ├── mask_145_4.dat
│ │ │ │ │ │ ├── mask_149_4.dat
│ │ │ │ │ │ ├── mask_153_4.dat
│ │ │ │ │ │ ├── mask_157_4.dat
│ │ │ │ │ │ ├── mask_161_4.dat
│ │ │ │ │ │ ├── mask_165_4.dat
│ │ │ │ │ │ ├── mask_169_4.dat
│ │ │ │ │ │ ├── mask_173_4.dat
│ │ │ │ │ │ ├── mask_177_4.dat
│ │ │ │ │ │ ├── mask_21_4.dat
│ │ │ │ │ │ ├── mask_25_4.dat
│ │ │ │ │ │ ├── mask_29_4.dat
│ │ │ │ │ │ ├── mask_33_4.dat
│ │ │ │ │ │ ├── mask_37_4.dat
│ │ │ │ │ │ ├── mask_41_4.dat
│ │ │ │ │ │ ├── mask_45_4.dat
│ │ │ │ │ │ ├── mask_49_4.dat
│ │ │ │ │ │ ├── mask_53_4.dat
│ │ │ │ │ │ ├── mask_57_4.dat
│ │ │ │ │ │ ├── mask_61_4.dat
│ │ │ │ │ │ ├── mask_65_4.dat
│ │ │ │ │ │ ├── mask_69_4.dat
│ │ │ │ │ │ ├── mask_73_4.dat
│ │ │ │ │ │ ├── mask_77_4.dat
│ │ │ │ │ │ ├── mask_81_4.dat
│ │ │ │ │ │ ├── mask_85_4.dat
│ │ │ │ │ │ ├── mask_89_4.dat
│ │ │ │ │ │ ├── mask_93_4.dat
│ │ │ │ │ │ └── mask_97_4.dat
│ │ │ │ │ ├── mask_5
│ │ │ │ │ │ ├── mask_101_5.dat
│ │ │ │ │ │ ├── mask_105_5.dat
│ │ │ │ │ │ ├── mask_109_5.dat
│ │ │ │ │ │ ├── mask_113_5.dat
│ │ │ │ │ │ ├── mask_117_5.dat
│ │ │ │ │ │ ├── mask_121_5.dat
│ │ │ │ │ │ ├── mask_125_5.dat
│ │ │ │ │ │ ├── mask_129_5.dat
│ │ │ │ │ │ ├── mask_133_5.dat
│ │ │ │ │ │ ├── mask_137_5.dat
│ │ │ │ │ │ ├── mask_141_5.dat
│ │ │ │ │ │ ├── mask_145_5.dat
│ │ │ │ │ │ ├── mask_149_5.dat
│ │ │ │ │ │ ├── mask_153_5.dat
│ │ │ │ │ │ ├── mask_157_5.dat
│ │ │ │ │ │ ├── mask_161_5.dat
│ │ │ │ │ │ ├── mask_165_5.dat
│ │ │ │ │ │ ├── mask_169_5.dat
│ │ │ │ │ │ ├── mask_173_5.dat
│ │ │ │ │ │ ├── mask_177_5.dat
│ │ │ │ │ │ ├── mask_21_5.dat
│ │ │ │ │ │ ├── mask_25_5.dat
│ │ │ │ │ │ ├── mask_29_5.dat
│ │ │ │ │ │ ├── mask_33_5.dat
│ │ │ │ │ │ ├── mask_37_5.dat
│ │ │ │ │ │ ├── mask_41_5.dat
│ │ │ │ │ │ ├── mask_45_5.dat
│ │ │ │ │ │ ├── mask_49_5.dat
│ │ │ │ │ │ ├── mask_53_5.dat
│ │ │ │ │ │ ├── mask_57_5.dat
│ │ │ │ │ │ ├── mask_61_5.dat
│ │ │ │ │ │ ├── mask_65_5.dat
│ │ │ │ │ │ ├── mask_69_5.dat
│ │ │ │ │ │ ├── mask_73_5.dat
│ │ │ │ │ │ ├── mask_77_5.dat
│ │ │ │ │ │ ├── mask_81_5.dat
│ │ │ │ │ │ ├── mask_85_5.dat
│ │ │ │ │ │ ├── mask_89_5.dat
│ │ │ │ │ │ ├── mask_93_5.dat
│ │ │ │ │ │ └── mask_97_5.dat
│ │ │ │ │ ├── mask_6
│ │ │ │ │ │ ├── mask_101_6.dat
│ │ │ │ │ │ ├── mask_105_6.dat
│ │ │ │ │ │ ├── mask_109_6.dat
│ │ │ │ │ │ ├── mask_113_6.dat
│ │ │ │ │ │ ├── mask_117_6.dat
│ │ │ │ │ │ ├── mask_121_6.dat
│ │ │ │ │ │ ├── mask_125_6.dat
│ │ │ │ │ │ ├── mask_129_6.dat
│ │ │ │ │ │ ├── mask_133_6.dat
│ │ │ │ │ │ ├── mask_137_6.dat
│ │ │ │ │ │ ├── mask_141_6.dat
│ │ │ │ │ │ ├── mask_145_6.dat
│ │ │ │ │ │ ├── mask_149_6.dat
│ │ │ │ │ │ ├── mask_153_6.dat
│ │ │ │ │ │ ├── mask_157_6.dat
│ │ │ │ │ │ ├── mask_161_6.dat
│ │ │ │ │ │ ├── mask_165_6.dat
│ │ │ │ │ │ ├── mask_169_6.dat
│ │ │ │ │ │ ├── mask_173_6.dat
│ │ │ │ │ │ ├── mask_177_6.dat
│ │ │ │ │ │ ├── mask_21_6.dat
│ │ │ │ │ │ ├── mask_25_6.dat
│ │ │ │ │ │ ├── mask_29_6.dat
│ │ │ │ │ │ ├── mask_33_6.dat
│ │ │ │ │ │ ├── mask_37_6.dat
│ │ │ │ │ │ ├── mask_41_6.dat
│ │ │ │ │ │ ├── mask_45_6.dat
│ │ │ │ │ │ ├── mask_49_6.dat
│ │ │ │ │ │ ├── mask_53_6.dat
│ │ │ │ │ │ ├── mask_57_6.dat
│ │ │ │ │ │ ├── mask_61_6.dat
│ │ │ │ │ │ ├── mask_65_6.dat
│ │ │ │ │ │ ├── mask_69_6.dat
│ │ │ │ │ │ ├── mask_73_6.dat
│ │ │ │ │ │ ├── mask_77_6.dat
│ │ │ │ │ │ ├── mask_81_6.dat
│ │ │ │ │ │ ├── mask_85_6.dat
│ │ │ │ │ │ ├── mask_89_6.dat
│ │ │ │ │ │ ├── mask_93_6.dat
│ │ │ │ │ │ └── mask_97_6.dat
│ │ │ │ │ └── mask_7
│ │ │ │ │ ├── mask_101_7.dat
│ │ │ │ │ ├── mask_105_7.dat
│ │ │ │ │ ├── mask_109_7.dat
│ │ │ │ │ ├── mask_113_7.dat
│ │ │ │ │ ├── mask_117_7.dat
│ │ │ │ │ ├── mask_121_7.dat
│ │ │ │ │ ├── mask_125_7.dat
│ │ │ │ │ ├── mask_129_7.dat
│ │ │ │ │ ├── mask_133_7.dat
│ │ │ │ │ ├── mask_137_7.dat
│ │ │ │ │ ├── mask_141_7.dat
│ │ │ │ │ ├── mask_145_7.dat
│ │ │ │ │ ├── mask_149_7.dat
│ │ │ │ │ ├── mask_153_7.dat
│ │ │ │ │ ├── mask_157_7.dat
│ │ │ │ │ ├── mask_161_7.dat
│ │ │ │ │ ├── mask_165_7.dat
│ │ │ │ │ ├── mask_169_7.dat
│ │ │ │ │ ├── mask_173_7.dat
│ │ │ │ │ ├── mask_177_7.dat
│ │ │ │ │ ├── mask_21_7.dat
│ │ │ │ │ ├── mask_25_7.dat
│ │ │ │ │ ├── mask_29_7.dat
│ │ │ │ │ ├── mask_33_7.dat
│ │ │ │ │ ├── mask_37_7.dat
│ │ │ │ │ ├── mask_41_7.dat
│ │ │ │ │ ├── mask_45_7.dat
│ │ │ │ │ ├── mask_49_7.dat
│ │ │ │ │ ├── mask_53_7.dat
│ │ │ │ │ ├── mask_57_7.dat
│ │ │ │ │ ├── mask_61_7.dat
│ │ │ │ │ ├── mask_65_7.dat
│ │ │ │ │ ├── mask_69_7.dat
│ │ │ │ │ ├── mask_73_7.dat
│ │ │ │ │ ├── mask_77_7.dat
│ │ │ │ │ ├── mask_81_7.dat
│ │ │ │ │ ├── mask_85_7.dat
│ │ │ │ │ ├── mask_89_7.dat
│ │ │ │ │ ├── mask_93_7.dat
│ │ │ │ │ └── mask_97_7.dat
│ │ │ │ ├── CHANGELOG
│ │ │ │ ├── index.php
│ │ │ │ ├── INSTALL
│ │ │ │ ├── LICENSE
│ │ │ │ ├── phpqrcode.php
│ │ │ │ ├── qrbitstream.php
│ │ │ │ ├── qrconfig.php
│ │ │ │ ├── qrconst.php
│ │ │ │ ├── qrencode.php
│ │ │ │ ├── qrimage.php
│ │ │ │ ├── qrinput.php
│ │ │ │ ├── qrlib.php
│ │ │ │ ├── qrmask.php
│ │ │ │ ├── qrrscode.php
│ │ │ │ ├── qrspec.php
│ │ │ │ ├── qrsplit.php
│ │ │ │ ├── qrtools.php
│ │ │ │ ├── README
│ │ │ │ ├── tools
│ │ │ │ │ ├── merge.bat
│ │ │ │ │ ├── merged_config.php
│ │ │ │ │ ├── merged_header.php
│ │ │ │ │ ├── merge.php
│ │ │ │ │ └── merge.sh
│ │ │ │ └── VERSION
│ │ │ ├── StringChange.class.php
│ │ │ ├── StringCheck.class.php
│ │ │ ├── ThisPage.class.php
│ │ │ ├── UploadFile.class.php
│ │ │ ├── cert
│ │ │ │ ├── apiclient_cert.pem
│ │ │ │ └── apiclient_key.pem
│ │ │ ├── lib
│ │ │ │ ├── logwechat.txt
│ │ │ │ ├── WxPay.Api.php
│ │ │ │ ├── WxPay.Config.php
│ │ │ │ ├── WxPay.Data.php
│ │ │ │ ├── WxPay.Exception.php
│ │ │ │ └── WxPay.Notify.php
│ │ │ ├── log.php
│ │ │ ├── logs
│ │ │ ├── WxPay.JsApiPay.php
│ │ │ └── WxPay.NativePay.php
│ │ └── View
│ │ ├── 404.html
│ │ └── error.html
│ ├── Index
│ │ ├── Common
│ │ │ └── index.html
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ ├── Controller
│ │ │ ├── BaseController.class.php
│ │ │ ├── HomeController.class.php
│ │ │ ├── IndexController.class.php
│ │ │ ├── index.html
│ │ │ ├── PayController.class.php
│ │ │ └── TestController.class.php
│ │ ├── index.html
│ │ ├── Model
│ │ │ └── index.html
│ │ └── View
│ │ ├── Home
│ │ │ ├── api.html
│ │ │ ├── dingdancf.html
│ │ │ ├── dingdancheck.html
│ │ │ ├── dingdan.html
│ │ │ ├── dldingdan.html
│ │ │ ├── dlfandian.html
│ │ │ ├── dl.html
│ │ │ ├── dluser.html
│ │ │ ├── fl.html
│ │ │ ├── index.html
│ │ │ ├── info.html
│ │ │ ├── moneylog.html
│ │ │ ├── pass.html
│ │ │ ├── tx.html
│ │ │ ├── txjl.html
│ │ │ ├── yhkadd.html
│ │ │ └── yhk.html
│ │ ├── Index
│ │ │ ├── index_bak.html
│ │ │ ├── index.html
│ │ │ ├── login.html
│ │ │ ├── pass.html
│ │ │ └── reg.html
│ │ ├── index.html
│ │ ├── Pay
│ │ │ └── jsapi.html
│ │ ├── Public
│ │ │ ├── footer.html
│ │ │ ├── header.html
│ │ │ ├── left.html
│ │ │ ├── msg.html
│ │ │ └── top.html
│ │ └── Test
│ │ ├── index.html
│ │ └── result.html
│ ├── Manage
│ │ ├── Common
│ │ │ └── index.html
│ │ ├── Conf
│ │ │ ├── config.php
│ │ │ └── index.html
│ │ ├── Controller
│ │ │ ├── AdminController.class.php
│ │ │ ├── AgentController.class.php
│ │ │ ├── ApiController.class.php
│ │ │ ├── ApistyleController.class.php
│ │ │ ├── BaseController.class.php
│ │ │ ├── DingdanController.class.php
│ │ │ ├── IndexController.class.php
│ │ │ ├── index.html
│ │ │ ├── KaController.class.php
│ │ │ ├── KouController.class.php
│ │ │ ├── LogController.class.php
│ │ │ ├── MainController.class.php
│ │ │ ├── ParamController.class.php
│ │ │ ├── PayController.class.php
│ │ │ └── UserController.class.php
│ │ ├── index.html
│ │ ├── Model
│ │ │ └── index.html
│ │ └── View
│ │ ├── Admin
│ │ │ ├── add.html
│ │ │ ├── index.html
│ │ │ └── pass.html
│ │ ├── Agent
│ │ │ ├── add.html
│ │ │ ├── fandian.html
│ │ │ └── index.html
│ │ ├── Api
│ │ │ ├── add.html
│ │ │ ├── adduser.html
│ │ │ ├── index.html
│ │ │ └── user.html
│ │ ├── Apistyle
│ │ │ ├── add.html
│ │ │ └── index.html
│ │ ├── Dingdan
│ │ │ ├── add.html
│ │ │ ├── dingdancheck.html
│ │ │ └── index.html
│ │ ├── Index
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── Ka
│ │ │ ├── add.html
│ │ │ └── index.html
│ │ ├── Kou
│ │ │ ├── add.html
│ │ │ └── index.html
│ │ ├── Log
│ │ │ └── index.html
│ │ ├── Main
│ │ │ └── index.html
│ │ ├── Param
│ │ │ └── index.html
│ │ ├── Pay
│ │ │ ├── index.html
│ │ │ └── moneylog.html
│ │ ├── Public
│ │ │ ├── footer.html
│ │ │ ├── header.html
│ │ │ ├── left.html
│ │ │ ├── msg.html
│ │ │ └── top.html
│ │ └── User
│ │ ├── add.html
│ │ ├── index.html
│ │ └── info.html
│ └── Runtime
│ ├── Cache
│ │ ├── Home
│ │ │ ├── 20914c0f075f91df3579ffbdf5180b02.php
│ │ │ └── index.html
│ │ ├── Index
│ │ │ ├── 04ee4e0c098409187813b996bfd6d55d.php
│ │ │ ├── 0aeb3288ba6a16105d664b29aead9371.php
│ │ │ ├── 0cd9bfa2e8a857998b9aafee21ff789d.php
│ │ │ ├── 2cea101921c033ecbee1f3be87486d54.php
│ │ │ ├── 307fe9052f86bdbd285af52a94c33022.php
│ │ │ ├── 39315ba835985db53eeb23f9c2318e4c.php
│ │ │ ├── 3d017f75179f4632beb6b4db9767f3a5.php
│ │ │ ├── 423196aa497930f0c4ebf6a1d46f9ae8.php
│ │ │ ├── 5f5d9a23a6a926bd6863115f62f9b248.php
│ │ │ ├── 65e715b68ad579243301272d33fa3b2b.php
│ │ │ ├── 794a66c0fe348dc9bc502831d7c27fb3.php
│ │ │ ├── 80f674b2dc13a2e5042e5ac2857f131c.php
│ │ │ ├── 85a9eed23c8afdb9acf14ae7f39eb148.php
│ │ │ ├── a259715808d859b98e0174a4608c5809.php
│ │ │ ├── a438e85f35495cd8c762d062109f2b88.php
│ │ │ ├── b623c489339f212980afa4939f3a6d53.php
│ │ │ ├── c09d3163f9101f892e315733d8978fb7.php
│ │ │ ├── c17243492726073951e4d69f9573ac1c.php
│ │ │ ├── d26a71e850d4fbd303f4ad89aef7956a.php
│ │ │ ├── db99495f914549618a8cee3f2c389f7a.php
│ │ │ ├── e86ec5cb9b00ac047297a54ed781aedd.php
│ │ │ ├── ed634fa15ce951d9b9cb876e84424b57.php
│ │ │ ├── ee618f567fcb638dc258c2c1cd931957.php
│ │ │ ├── f428b49b3dca287924eeaace396fa736.php
│ │ │ ├── f6810083ea8e7a6c5bc6d656d9e7cd20.php
│ │ │ └── ffd09f12f64d8fa249037efc47890ce3.php
│ │ ├── index.html
│ │ └── Manage
│ │ ├── 0433773cf6da6e89b52feef3e11c485c.php
│ │ ├── 0ca9adbba7faf3e90ecd32faa5b95338.php
│ │ ├── 16675d5e0afa8b193942c97154a24f9a.php
│ │ ├── 18e5eaf5e054649faa7e727c3940739f.php
│ │ ├── 1c31fbea86ed351d7fd68f4d75bd272c.php
│ │ ├── 20914c0f075f91df3579ffbdf5180b02.php
│ │ ├── 3188ad70c286337322434005c6ec66f9.php
│ │ ├── 33ae3e40eba25856e9df71ee6ecf5842.php
│ │ ├── 368d0a1147cfd189ba59ecfa915f676b.php
│ │ ├── 389e1775d6154bc3f80b885084e79734.php
│ │ ├── 3ad69ca9ec886c61ec4fc76825d558a4.php
│ │ ├── 3b09b82eb0b33dc0621d9f6d1e4a316d.php
│ │ ├── 3bdad9718a080ed0223cfa9b3309b0b2.php
│ │ ├── 3c573c693f42eb977a683f9208570695.php
│ │ ├── 3eba0abb55c69db9e0df694fd1cbdf44.php
│ │ ├── 3fdf044818582cb66adec15bae7399b0.php
│ │ ├── 50711fe286a48524594b604a62b97457.php
│ │ ├── 516c43815163098b5dcf08846429c61b.php
│ │ ├── 5c3544e79e734c0269f278b95d462b0f.php
│ │ ├── 5e4595fa456931e134cebdcd3d3077ce.php
│ │ ├── 67b9d8e244c130cb9baf5d1995fe4c66.php
│ │ ├── 792f103c85cf3233ce286e60a7b2048b.php
│ │ ├── 97a92a60973e617f9b04dd5fcb848b58.php
│ │ ├── 9d875aeebd81e16c5fd0b109f47b9ea7.php
│ │ ├── a508dfb2450f8c0ab8d740571b5cadf9.php
│ │ ├── a660c25c2d7cb9b51f7d92cda029db91.php
│ │ ├── b451a4cf9501cb12e41f6f95326110bf.php
│ │ ├── bff16f1effe6b39d4b34fd2e57b1d3e6.php
│ │ ├── c34856e296b1f42f936985e6b5a87ba6.php
│ │ ├── cd7bd186e26ec52306b1725a7a8d9c24.php
│ │ ├── d14b4e0ae558dbbf9bcea16b021933a0.php
│ │ ├── d191fe40b6379095d54f7d6340a6d14f.php
│ │ ├── d24a77279f4c7b22d8aa1e7d18752abc.php
│ │ ├── d2e2bf3d866ab7a13e0da9d3dbd1ce18.php
│ │ ├── ed4585c89cde803b39f287265da62bb9.php
│ │ ├── f1fda5eb7d0844d00939dc70778e6755.php
│ │ ├── f54cf85c1377664aff409b0880ba0877.php
│ │ └── f68a16009238d5cc230050a5193917ce.php
│ ├── Data
│ │ └── index.html
│ ├── index.html
│ ├── Logs
│ │ ├── Common
│ │ ├── Home
│ │ │ └── index.html
│ │ ├── Index
│ │ │ ├── 17_11_30.log
│ │ │ ├── 17_12_01.log
│ │ │ ├── 17_12_03.log
│ │ │ ├── 17_12_10.log
│ │ │ ├── 17_12_14.log
│ │ │ ├── 18_01_29.log
│ │ │ ├── 18_03_04.log
│ │ │ ├── 18_03_05.log
│ │ │ ├── 18_03_06.log
│ │ │ ├── 18_03_07.log
│ │ │ ├── 18_03_08.log
│ │ │ ├── 18_03_09.log
│ │ │ ├── 18_03_10.log
│ │ │ ├── 18_03_11.log
│ │ │ ├── 18_03_17.log
│ │ │ ├── 18_03_18.log
│ │ │ ├── 18_03_19.log
│ │ │ ├── 18_03_20.log
│ │ │ ├── 18_03_28.log
│ │ │ ├── 18_04_13.log
│ │ │ ├── 18_05_20.log
│ │ │ └── 18_06_17.log
│ │ ├── index.html
│ │ └── Manage
│ │ ├── 1520251866-18_03_05.log
│ │ ├── 1520347757-18_03_06.log
│ │ ├── 1521523420-18_03_20.log
│ │ ├── 17_11_30.log
│ │ ├── 17_12_01.log
│ │ ├── 17_12_03.log
│ │ ├── 17_12_10.log
│ │ ├── 18_01_22.log
│ │ ├── 18_03_04.log
│ │ ├── 18_03_05.log
│ │ ├── 18_03_06.log
│ │ ├── 18_03_07.log
│ │ ├── 18_03_08.log
│ │ ├── 18_03_10.log
│ │ ├── 18_03_11.log
│ │ ├── 18_03_17.log
│ │ ├── 18_03_18.log
│ │ ├── 18_03_19.log
│ │ ├── 18_03_20.log
│ │ ├── 18_03_28.log
│ │ ├── 18_04_13.log
│ │ ├── 18_05_20.log
│ │ └── 18_06_17.log
│ └── Temp
│ ├── 1b36336fa56194f305710d67a7b4b936.php
│ ├── 21ffce5b8a6cc8cc6a41448dd69623c9
│ ├── d0c0bc7b1930e34f5faf4666533189a2.php
│ └── index.html
├── www
│ ├── 404.html
│ ├── demo
│ │ ├── php
│ │ │ ├── backUrl.php
│ │ │ ├── config.php
│ │ │ ├── ddh.txt
│ │ │ ├── demo.txt
│ │ │ ├── index.php
│ │ │ ├── notifyUrl.php
│ │ │ └── preorder.php
│ │ └── php.rar
│ ├── favicon.ico
│ ├── index.php
│ ├── manage.php
│ ├── nginx
│ ├── Public
│ │ ├── admin
│ │ │ ├── css
│ │ │ │ └── app.css
│ │ │ ├── img
│ │ │ │ ├── bg.png
│ │ │ │ └── green.png
│ │ │ └── js
│ │ │ └── app.js
│ │ ├── arial.ttf
│ │ ├── audio
│ │ │ └── dingdan.mp3
│ │ ├── common
│ │ │ ├── css
│ │ │ ├── img
│ │ │ └── js
│ │ │ └── common.js
│ │ ├── home
│ │ │ ├── app.js
│ │ │ ├── font-awesome.css
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── style.css
│ │ ├── index
│ │ │ ├── auto
│ │ │ │ ├── bg.png
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── casebanner_34.jpg
│ │ │ │ ├── casebanner_36.jpg
│ │ │ │ ├── casebanner_39.jpg
│ │ │ │ ├── casebanner_45.jpg
│ │ │ │ ├── casebanner_48.jpg
│ │ │ │ ├── casebanner_50.jpg
│ │ │ │ ├── casebanner_52.jpg
│ │ │ │ ├── casebanner_55.jpg
│ │ │ │ ├── casebanner_58.jpg
│ │ │ │ ├── casebanner_61.jpg
│ │ │ │ ├── casebanner_64.jpg
│ │ │ │ ├── casebanner_67.jpg
│ │ │ │ ├── casebanner_80.jpg
│ │ │ │ ├── casebanner_81.jpg
│ │ │ │ ├── casebanner_82.jpg
│ │ │ │ ├── iconfont.css
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.ttf
│ │ │ │ ├── iconfont.woff
│ │ │ │ ├── ixicon1.png
│ │ │ │ ├── ixicon2.png
│ │ │ │ ├── ixicon3.png
│ │ │ │ ├── ixicon4.png
│ │ │ │ ├── ixicon6.png
│ │ │ │ ├── pa.jpg
│ │ │ │ ├── polyPay-bnr-bg.jpg
│ │ │ │ ├── public.css
│ │ │ │ ├── public.js
│ │ │ │ ├── showall.png
│ │ │ │ └── v2icon3.png
│ │ │ ├── common
│ │ │ │ ├── fail.png
│ │ │ │ ├── je.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── success.png
│ │ │ │ ├── timg.gif
│ │ │ │ └── tip.png
│ │ │ ├── ipaynow
│ │ │ │ └── showall.png
│ │ │ ├── ispay
│ │ │ │ └── showall.png
│ │ │ ├── kuaiyun
│ │ │ │ └── showall.png
│ │ │ ├── night
│ │ │ │ ├── base.css
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── bg.png
│ │ │ │ ├── index.css
│ │ │ │ ├── JS_qq.png
│ │ │ │ ├── logo.png
│ │ │ │ └── slogan.png
│ │ │ └── wiipay
│ │ │ └── showall.png
│ │ ├── plugin
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ └── glyphicons-halflings-regular.ttf
│ │ │ ├── clipboard.js
│ │ │ ├── datetimepicker.js
│ │ │ ├── echarts.common.min.js
│ │ │ ├── echarts.simple.min.js
│ │ │ ├── flot
│ │ │ │ ├── jquery.flot.js
│ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ └── jquery.flot.tooltip.min.js
│ │ │ ├── jquery-1.11.1.min.js
│ │ │ ├── jquery-1.12.1.min.js
│ │ │ ├── jquery-1.8.0.min.js
│ │ │ ├── jquery-3.2.0.min.js
│ │ │ ├── jquery.zclip.min.js
│ │ │ ├── laydate
│ │ │ │ ├── laydate.js
│ │ │ │ ├── need
│ │ │ │ │ └── laydate.css
│ │ │ │ └── skins
│ │ │ │ ├── dahong
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── default
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ ├── molv
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── laydate.css
│ │ │ │ └── yalan
│ │ │ │ ├── icon.png
│ │ │ │ └── laydate.css
│ │ │ ├── layer
│ │ │ │ ├── extend
│ │ │ │ │ └── layer.ext.js
│ │ │ │ ├── layer.js
│ │ │ │ └── skin
│ │ │ │ ├── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── layer.css
│ │ │ │ └── layer.ext.css
│ │ │ ├── png.js
│ │ │ ├── swiper.jquery.min.js
│ │ │ ├── webuploader
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── progress.png
│ │ │ │ │ └── success.png
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.js
│ │ │ │ └── webuploader.min.js
│ │ │ └── zeroClipboard
│ │ │ ├── jquery.zclip.js
│ │ │ ├── zeroClipboard.min.js
│ │ │ └── ZeroClipboard.swf
│ │ └── simhei.ttf
│ ├── Uploads
│ │ ├── excel
│ │ │ └── 2018
│ │ │ └── 0307
│ │ ├── qrcode
│ │ │ ├── 0
│ │ │ │ ├── 4bb426ec8e32371507b5c5cb34a5a2604.png
│ │ │ │ ├── 4bb426ec8e32371507b5c5cb34a5a2606.png
│ │ │ │ ├── 4bb426ec8e32371507b5c5cb34a5a2609.png
│ │ │ │ └── 4bb426ec8e32371507b5c5cb34a5a260.png
│ │ │ └── 1
│ │ │ └── 18e2baeb7b093b11bf6ca5fa6df675c8.png
│ │ └── tmp
│ │ ├── 28daaf3ad002f848d0a3a655b070b4cc.png
│ │ ├── 40fe94b31596649367bbe16dea2aa052
│ │ ├── 40fe94b31596649367bbe16dea2aa052.png
│ │ ├── 642ac77a7eb6f1d979e9fc773aaab9b5.png
│ │ ├── 79b6861190e8c73e836e9a0d15770a33.png
│ │ ├── 9a9ac99da1bd6a771e669275cfa9038c.png
│ │ ├── b6f2684db3d8d357cc6724e144f4e1c3.png
│ │ └── df7e9e4a06f5b7077d9bfded1c63227f.png
│ └── web.config
└── 系统说明.txt
195 directories, 1140 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论