├── .gitignore ├── C_sdk ├── WeWorkFinanceSdk_C.h ├── libWeWorkFinanceSdk_C.so ├── md5.txt ├── tool_testSdk.cpp └── version.txt ├── LICENSE ├── README.md ├── composer.json ├── example.php ├── src ├── WxworkFinanceSdk.php └── WxworkFinanceSdkException.php └── 金融版sdk说明.docx /.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | tmp 3 | .idea 4 | .vscode 5 | .DS_Store 6 | java_sdk 7 | test.php -------------------------------------------------------------------------------- /C_sdk/WeWorkFinanceSdk_C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/C_sdk/WeWorkFinanceSdk_C.h -------------------------------------------------------------------------------- /C_sdk/libWeWorkFinanceSdk_C.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/C_sdk/libWeWorkFinanceSdk_C.so -------------------------------------------------------------------------------- /C_sdk/md5.txt: -------------------------------------------------------------------------------- 1 | 781ec3cbad904b1527023cc9df0f279b 2 | -------------------------------------------------------------------------------- /C_sdk/tool_testSdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/C_sdk/tool_testSdk.cpp -------------------------------------------------------------------------------- /C_sdk/version.txt: -------------------------------------------------------------------------------- 1 | 200215 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/example.php -------------------------------------------------------------------------------- /src/WxworkFinanceSdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/src/WxworkFinanceSdk.php -------------------------------------------------------------------------------- /src/WxworkFinanceSdkException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/src/WxworkFinanceSdkException.php -------------------------------------------------------------------------------- /金融版sdk说明.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullsoft/wework-finance-sdk/HEAD/金融版sdk说明.docx --------------------------------------------------------------------------------