├── .editorconfig ├── .env ├── .gitattributes ├── .gitignore ├── .idea ├── SuperCooperationApi.iml ├── misc.xml ├── modules.xml ├── php.xml └── vcs.xml ├── .styleci.yml ├── LICENSE ├── _ide_helper.php ├── app ├── Admin │ └── Controllers │ │ ├── Common │ │ └── UploadController.php │ │ ├── Fee │ │ └── FeeManagerController.php │ │ ├── Funds │ │ ├── AccountManagerController.php │ │ ├── PayManagerController.php │ │ └── WithDrawManagerController.php │ │ ├── IndexController.php │ │ ├── Message │ │ └── IMController.php │ │ ├── Permission │ │ ├── AdminController.php │ │ ├── ApiController.php │ │ ├── ApiGroupController.php │ │ ├── ResourceController.php │ │ ├── RoleController.php │ │ └── SystemController.php │ │ ├── Pool │ │ ├── ArticleCategoryController.php │ │ ├── ArticleController.php │ │ ├── ConfigController.php │ │ └── UpgradeController.php │ │ ├── ScController.php │ │ ├── Statistics │ │ └── IndexController.php │ │ ├── Task │ │ ├── EmployerManagerController.php │ │ ├── HelperManagerController.php │ │ └── TaskCategoryManagerController.php │ │ └── User │ │ ├── CustomerController.php │ │ ├── FeedbackController.php │ │ └── UserController.php ├── Bridges │ ├── Message │ │ ├── CommentMessageBridge.php │ │ ├── IMBridge.php │ │ ├── IMUserBridge.php │ │ ├── MessageBridge.php │ │ └── PushBridge.php │ ├── Permission │ │ ├── AccessBridge.php │ │ ├── AdminBridge.php │ │ ├── AdminLogBridge.php │ │ ├── BasePermissionBridge.php │ │ └── RoleBridge.php │ ├── Pool │ │ ├── AddressBridge.php │ │ ├── ArticleBridge.php │ │ ├── ArticleCategoryBridge.php │ │ ├── BasePoolBridge.php │ │ ├── GlobalConfigBridge.php │ │ └── YunTuBridge.php │ ├── ScBridge.php │ ├── Statistics │ │ └── TaskDayBridge.php │ ├── Trade │ │ ├── AccountBridge.php │ │ ├── Admin │ │ │ ├── EmployerManagerBridge.php │ │ │ ├── FeeManagerBridge.php │ │ │ ├── HelperManagerBridge.php │ │ │ └── WithDrawManagerBridge.php │ │ ├── Category │ │ │ └── TaskCategoryManagerBridge.php │ │ ├── CommentBridge.php │ │ ├── CompensateBridge.php │ │ ├── DetailTaskOrderBridge.php │ │ ├── EmployerBridge.php │ │ ├── HelperBridge.php │ │ ├── InoutLogBridge.php │ │ ├── PayBridge.php │ │ ├── PayTaskOrderBridge.php │ │ ├── RefundBridge.php │ │ └── WithDrawBridge.php │ └── User │ │ ├── AcceptPushBridge.php │ │ ├── BlackBridge.php │ │ ├── CertificationBridge.php │ │ ├── CodeBridge.php │ │ ├── CustomerBridge.php │ │ ├── FeedbackBridge.php │ │ ├── LabelBridge.php │ │ ├── UserBankCardBridge.php │ │ ├── UserBridge.php │ │ ├── UserPositionBridge.php │ │ └── UserPushBridge.php ├── Console │ ├── Commands │ │ ├── CheckYunTuEmployerMap.php │ │ ├── Heart.php │ │ ├── TaskOverdue.php │ │ ├── TaskOvertimeComplete.php │ │ └── TaskSendMessage.php │ └── Kernel.php ├── Consts │ ├── CacheConst.php │ ├── CertificateConst.php │ ├── DBConnection.php │ ├── ErrorCode │ │ ├── FeeErrorCode.php │ │ ├── MessageErrorCode.php │ │ ├── PayErrorCode.php │ │ ├── PoolErrorCode.php │ │ ├── ReceiveErrorCode.php │ │ ├── RefundErrorCode.php │ │ ├── RequestErrorCode.php │ │ ├── SmsErrorCode.php │ │ ├── TaskOrderErrorCode.php │ │ ├── TelephoneErrorCode.php │ │ ├── UserErrorCode.php │ │ └── WithdrawErrorCode.php │ ├── ErrorConst.php │ ├── FeedbackConst.php │ ├── GlobalConst.php │ ├── MessageConst.php │ ├── PermissionConst.php │ ├── RealNameAuthConst.php │ ├── SmsConst.php │ ├── TelephoneConst.php │ ├── Trade │ │ ├── FeeConst.php │ │ ├── OrderConst.php │ │ ├── PayConst.php │ │ ├── RefundConst.php │ │ └── WithDrawConst.php │ ├── UploadFileConst.php │ └── UserConst.php ├── Events │ ├── Funds │ │ └── WithDrawEvent.php │ ├── TaskOrder │ │ ├── TaskAddEvent.php │ │ ├── TaskCompleteEvent.php │ │ ├── TaskConfirmReceiveEvent.php │ │ ├── TaskDeliveryEvent.php │ │ ├── TaskEmployerCancelEvent.php │ │ ├── TaskHelperCancelEvent.php │ │ ├── TaskHelperCompensatePayEvent.php │ │ ├── TaskReceiveEvent.php │ │ ├── TaskRefuseDeliveryEvent.php │ │ ├── TaskReverseStartEvent.php │ │ ├── TaskStartEvent.php │ │ └── TaskUpdateEvent.php │ └── User │ │ ├── LoginEvent.php │ │ ├── LogoutEvent.php │ │ ├── RegisterEvent.php │ │ └── UpdatedEvent.php ├── Exceptions │ ├── BusinessException.php │ └── Handler.php ├── Facades │ └── Push.php ├── Helpers │ └── Helper.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Common │ │ │ ├── ConfigController.php │ │ │ ├── RecordController.php │ │ │ ├── UpgradeController.php │ │ │ └── UploadController.php │ │ ├── Controller.php │ │ ├── Message │ │ │ ├── CommentController.php │ │ │ ├── IMController.php │ │ │ ├── MessageController.php │ │ │ ├── NoticeController.php │ │ │ ├── OrderController.php │ │ │ └── PushController.php │ │ ├── Pool │ │ │ ├── AddressController.php │ │ │ ├── ArticleController.php │ │ │ ├── ConfigController.php │ │ │ └── IndexController.php │ │ ├── Trade │ │ │ ├── Employer │ │ │ │ └── OrderController.php │ │ │ ├── Helper │ │ │ │ └── OrderController.php │ │ │ ├── Income │ │ │ │ ├── IndexController.php │ │ │ │ └── WithDrawController.php │ │ │ ├── Order │ │ │ │ ├── IndexController.php │ │ │ │ └── SearchController.php │ │ │ └── Pay │ │ │ │ └── PayController.php │ │ └── User │ │ │ ├── AddressController.php │ │ │ ├── AlipayController.php │ │ │ ├── BankController.php │ │ │ ├── BlackController.php │ │ │ ├── CertificateController.php │ │ │ ├── CertificationController.php │ │ │ ├── FeedbackController.php │ │ │ ├── LabelController.php │ │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Admin.php │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── LogViewer.php │ │ ├── Permission.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── Sign.php │ │ ├── Token.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── AdminLogJob.php │ └── Push │ │ ├── BindCidJob.php │ │ ├── BindPhoneJob.php │ │ └── PushJob.php ├── Listeners │ ├── Funds │ │ └── WithDrawSubscriber.php │ ├── ScEventListener.php │ ├── TaskOrder │ │ ├── TaskAddEventSubscriber.php │ │ ├── TaskCompleteEventSubscriber.php │ │ ├── TaskConfirmReceiveEventSubscriber.php │ │ ├── TaskDeliveryEventSubscriber.php │ │ ├── TaskEmployerCancelSubscriber.php │ │ ├── TaskHelperCancelEventSubscriber.php │ │ ├── TaskHelperCompensatePayEventSubscriber.php │ │ ├── TaskReceiveEventSubscriber.php │ │ ├── TaskRefuseDeliverySubscriber.php │ │ ├── TaskReverseStartEventSubscriber.php │ │ ├── TaskStartEventSubscriber.php │ │ └── TaskUpdateEventSubscriber.php │ └── UserEventSubscriber.php ├── Models │ ├── EloquentTree.php │ ├── Message │ │ ├── BaseMessage.php │ │ ├── Comment │ │ │ ├── Comment.php │ │ │ └── CommentRelation.php │ │ ├── Im │ │ │ ├── ImMessageRelation.php │ │ │ └── MessageImPrimary.php │ │ ├── ImUser.php │ │ ├── Message.php │ │ ├── MessageCounter.php │ │ ├── MessageRelation.php │ │ ├── MessageReply.php │ │ ├── Notice │ │ │ ├── Notice.php │ │ │ └── NoticeRelation.php │ │ ├── Order │ │ │ ├── OrderNotice.php │ │ │ └── OrderNoticeRelation.php │ │ ├── PushTask.php │ │ ├── PushTaskUser.php │ │ └── Reply.php │ ├── Permission │ │ ├── AdminLog.php │ │ ├── AdminRole.php │ │ ├── Api.php │ │ ├── ApiGroup.php │ │ ├── BasePermission.php │ │ ├── Cache │ │ │ ├── ApiCache.php │ │ │ ├── ResourceCache.php │ │ │ └── VisitCache.php │ │ ├── Resource.php │ │ ├── ResourceApi.php │ │ ├── Role.php │ │ ├── RoleResource.php │ │ └── System.php │ ├── Pool │ │ ├── Address.php │ │ ├── AppVersion.php │ │ ├── Article.php │ │ ├── ArticleCategory.php │ │ ├── BasePool.php │ │ ├── GlobalConfig.php │ │ ├── PhoneProtect.php │ │ ├── PhoneProtectCancel.php │ │ ├── Printer.php │ │ ├── PrinterRecord.php │ │ ├── YunTuTable.php │ │ └── YunTuTableData.php │ ├── ScModel.php │ ├── Statistics │ │ ├── BaseDay.php │ │ └── TaskDay.php │ ├── Trade │ │ ├── BaseTrade.php │ │ ├── Entity │ │ │ └── TaskOrderEntity.php │ │ ├── Fee │ │ │ ├── FeeLog.php │ │ │ ├── FeeRule.php │ │ │ └── RefundFeeLog.php │ │ ├── Fund │ │ │ ├── Account.php │ │ │ ├── AccountChange.php │ │ │ ├── FreezeLog.php │ │ │ ├── InoutLog.php │ │ │ ├── WithdrawApply.php │ │ │ └── WithdrawApplyFailed.php │ │ ├── Order │ │ │ ├── Address.php │ │ │ ├── Cancel.php │ │ │ ├── Category.php │ │ │ ├── Compensate.php │ │ │ ├── Defer.php │ │ │ ├── DeliveryRecord.php │ │ │ ├── PriceChange.php │ │ │ ├── ReceiverOrder.php │ │ │ ├── Search.php │ │ │ ├── Service.php │ │ │ ├── StateChange.php │ │ │ ├── TaskOrder.php │ │ │ ├── Text.php │ │ │ └── TypeChange.php │ │ └── Pay │ │ │ ├── Pay.php │ │ │ ├── PayMessage.php │ │ │ └── PayRefund.php │ └── User │ │ ├── BaseUser.php │ │ ├── ChangeLog.php │ │ ├── Label.php │ │ ├── User.php │ │ ├── UserAcceptConfig.php │ │ ├── UserAcceptConfigCategory.php │ │ ├── UserAddress.php │ │ ├── UserAddressPosition.php │ │ ├── UserBankCard.php │ │ ├── UserBlack.php │ │ ├── UserCodeVerify.php │ │ ├── UserCustomer.php │ │ ├── UserFace.php │ │ ├── UserFeedback.php │ │ ├── UserGrantLogin.php │ │ ├── UserLabel.php │ │ ├── UserLoginRecord.php │ │ ├── UserPush.php │ │ ├── UserRealName.php │ │ └── UserSkillCertify.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── HorizonServiceProvider.php │ ├── PushServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ ├── Common │ │ ├── RecordService.php │ │ ├── TelephoneService.php │ │ ├── UpgradeService.php │ │ └── UploadService.php │ ├── Message │ │ ├── BaseMessageService.php │ │ ├── CommentMessageService.php │ │ ├── Entity │ │ │ └── CommentEntity.php │ │ ├── IMService.php │ │ ├── IMUserService.php │ │ ├── ImMessageService.php │ │ ├── MessageCounterService.php │ │ ├── MessageService.php │ │ ├── NoticeMessageService.php │ │ ├── OrderMessageService.php │ │ └── PushService.php │ ├── Permission │ │ ├── AccessService.php │ │ ├── AdminLogService.php │ │ ├── AdminService.php │ │ ├── ApiGroupService.php │ │ ├── ApiService.php │ │ ├── BasePermissionService.php │ │ ├── ResourceService.php │ │ ├── RoleService.php │ │ └── SystemService.php │ ├── Pool │ │ ├── AddressService.php │ │ ├── ArticleCategoryService.php │ │ ├── ArticleService.php │ │ ├── ConfigService.php │ │ ├── PrinterService.php │ │ └── YunTuService.php │ ├── ScService.php │ ├── Statistics │ │ └── TaskDayService.php │ ├── Trade │ │ ├── Category │ │ │ └── TaskCategoryManagerService.php │ │ ├── Fee │ │ │ ├── Admin │ │ │ │ └── FeeManagerService.php │ │ │ └── FeeTaskService.php │ │ ├── Fund │ │ │ ├── AccountService.php │ │ │ ├── Admin │ │ │ │ └── WithDrawManagerService.php │ │ │ ├── CompensateService.php │ │ │ ├── InoutLogService.php │ │ │ └── WithDrawService.php │ │ ├── Order │ │ │ ├── Admin │ │ │ │ ├── EmployerManagerService.php │ │ │ │ └── HelperManagerService.php │ │ │ ├── BaseTaskOrderService.php │ │ │ ├── CommentService.php │ │ │ ├── Employer │ │ │ │ ├── AddTaskOrderService.php │ │ │ │ ├── CancelOrderService.php │ │ │ │ ├── ConfirmTaskOrderService.php │ │ │ │ ├── DetailTaskOrderService.php │ │ │ │ ├── EmployerService.php │ │ │ │ ├── ListOrderService.php │ │ │ │ └── UpdateTaskOrderService.php │ │ │ ├── Helper │ │ │ │ ├── HelperService.php │ │ │ │ ├── ListOrderService.php │ │ │ │ ├── ReceiveTaskOrderService.php │ │ │ │ └── SearchService.php │ │ │ ├── State │ │ │ │ └── TaskOrderStateService.php │ │ │ └── TaskNoticeService.php │ │ ├── Pay │ │ │ ├── Gateway │ │ │ │ ├── BalancePayment.php │ │ │ │ ├── ScAlipay.php │ │ │ │ ├── ScAlipay │ │ │ │ │ └── TransferBankGateway.php │ │ │ │ ├── ScWeixin.php │ │ │ │ └── ScWeixin │ │ │ │ │ └── TransferBankGateway.php │ │ │ ├── PayService.php │ │ │ └── PayTaskOrderService.php │ │ ├── Refund │ │ │ ├── RefundService.php │ │ │ └── RefundTaskOrderService.php │ │ └── Traits │ │ │ ├── ModelTrait.php │ │ │ ├── OrderEntityCheckTrait.php │ │ │ └── ServiceTrait.php │ └── User │ │ ├── AcceptPushService.php │ │ ├── AddressService.php │ │ ├── BankCardService.php │ │ ├── BlackService.php │ │ ├── CertificationService.php │ │ ├── CodeService.php │ │ ├── CustomerService.php │ │ ├── FeedbackService.php │ │ ├── LabelService.php │ │ ├── SkillCertifyService.php │ │ ├── UserPositionService.php │ │ ├── UserPushService.php │ │ └── UserService.php ├── Utils │ ├── Alipay.php │ ├── AliyunOss.php │ ├── AliyunSms.php │ ├── Aop │ │ ├── AlipayMobilePublicMultiMediaClient.php │ │ ├── AlipayMobilePublicMultiMediaExecute.php │ │ ├── AopCertClient.php │ │ ├── AopCertification.php │ │ ├── AopClient.php │ │ ├── AopEncrypt.php │ │ ├── EncryptParseItem.php │ │ ├── EncryptResponseData.php │ │ ├── Request │ │ │ ├── AlipaySystemOauthTokenRequest.php │ │ │ ├── AlipayTradeAppPayRequest.php │ │ │ ├── AlipayTradePayRequest.php │ │ │ ├── AlipayTradePrecreateRequest.php │ │ │ ├── AlipayTradeQueryRequest.php │ │ │ ├── AlipayTradeWapPayRequest.php │ │ │ ├── AlipayUserInfoAuthRequest.php │ │ │ ├── AlipayUserInfoShareRequest.php │ │ │ └── AlipayUserInfoVerifyRequest.php │ │ ├── SignData.php │ │ ├── readme │ │ └── test │ │ │ ├── AopCertClientTest.php │ │ │ ├── AopCertificationTest.php │ │ │ ├── AopClientTest.php │ │ │ └── TestImage.php │ ├── Dingding.php │ ├── IM.php │ ├── Json.php │ ├── Map │ │ ├── AMap.php │ │ ├── MapInterface.php │ │ ├── TencentYunTu.php │ │ ├── YunTu.php │ │ └── YunTuInterface.php │ ├── NoSql │ │ └── Redis │ │ │ ├── Entity.php │ │ │ ├── Entity │ │ │ ├── Hash.php │ │ │ ├── Set.php │ │ │ └── SortedSet.php │ │ │ ├── Example.php │ │ │ ├── RedisException.php │ │ │ ├── Store.php │ │ │ └── Table │ │ │ ├── HashTable.php │ │ │ ├── SHashTable.php │ │ │ ├── STHashTable.php │ │ │ └── SortedHashTable.php │ ├── Printer │ │ ├── Bo │ │ │ ├── PrintRecordBo.php │ │ │ ├── PrinterBo.php │ │ │ ├── Receipt.php │ │ │ ├── ReceiptSet.php │ │ │ ├── TplDataSource.php │ │ │ ├── TplDataSource │ │ │ │ ├── Cash │ │ │ │ │ └── Cash.php │ │ │ │ ├── GeneralTplDataSource.php │ │ │ │ └── Takeaway │ │ │ │ │ └── Takeaway.php │ │ │ └── Traits │ │ │ │ ├── CashAttribute.php │ │ │ │ └── TakeawayAttribute.php │ │ ├── Common │ │ │ └── Help.php │ │ ├── Conf │ │ │ └── Printer.php │ │ ├── DataStructure │ │ │ ├── CashDataStructure.php │ │ │ ├── DataStructure.php │ │ │ └── TakeawayDataStructure.php │ │ ├── Devices │ │ │ ├── Command │ │ │ │ ├── FeieCommand.php │ │ │ │ ├── ICommand.php │ │ │ │ ├── ThsfCommand.php │ │ │ │ └── YiLianCommand.php │ │ │ ├── Device.php │ │ │ ├── FeieDevice.php │ │ │ ├── ThsfDevice.php │ │ │ └── YiLianDevice.php │ │ ├── Impl │ │ │ └── OrderPrint │ │ │ │ ├── Cash.php │ │ │ │ ├── Example.php │ │ │ │ └── Takeaway.php │ │ └── Templates │ │ │ ├── CashTemplate.php │ │ │ ├── TakeawayTemplate.php │ │ │ └── Template.php │ ├── Push │ │ ├── GeTui.php │ │ └── PushInterface.php │ ├── RealNameAuth.php │ ├── Recursion.php │ ├── Sign.php │ ├── TelephoneProtect.php │ ├── TencentCloud.php │ ├── UnderLineToHump.php │ └── UniqueNo.php └── Web │ ├── Controllers │ ├── Callback │ │ ├── AlipayController.php │ │ ├── IMController.php │ │ ├── PhoneProtectController.php │ │ └── WeixinController.php │ ├── Content │ │ └── ArticleController.php │ ├── IndexController.php │ ├── RedirectController.php │ ├── ScController.php │ ├── Util │ │ └── SpiderAddressController.php │ └── Weixin │ │ └── IndexController.php │ └── Services │ └── Trade │ └── OrderService.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── clean.sh ├── composer.json ├── composer.lock ├── config ├── alipay_cert │ ├── 250.cn.csr │ ├── 250.cn_公钥.txt │ ├── 250.cn_私钥.txt │ ├── alipayCertPublicKey_RSA2.crt │ ├── alipayRootCert.crt │ ├── appCertPublicKey.crt │ ├── 应用公钥2048.txt │ └── 应用私钥2048.txt ├── aliyun.php ├── app.php ├── app_cert │ ├── android │ │ ├── README │ │ └── SuperCooperation.keystore │ └── ios │ │ ├── CertificateSigningRequest.certSigningRequest │ │ ├── production │ │ ├── 20191027mac.p12 │ │ ├── README │ │ ├── aps.cer │ │ ├── aps_cc.lgxj.help_dis.p12 │ │ ├── cc.lgxj.help-dis.cer │ │ ├── cclgxjhelp_20200105_distribution.mobileprovision │ │ └── dev_KGWD56893S_LIUXINGLIUGUANGXINGJI(1).p12 │ │ └── sandbox │ │ ├── README │ │ ├── aps_cc.lgxj.help_dev.p12 │ │ ├── aps_development .cer │ │ ├── cc.lgxj.help-dev.p12 │ │ ├── cclgxjhelp_20200105_develop.mobileprovision │ │ └── ios_development.cer ├── auth.php ├── banklist.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── horizon.php ├── im.php ├── log-viewer.php ├── logging.php ├── mail.php ├── map.php ├── npp.php ├── oss.php ├── pay.php ├── printer.php ├── push.php ├── queue.php ├── services.php ├── session.php ├── tencentcloud.php ├── view.php └── wechat_cert │ ├── apiclient_cert.p12 │ ├── apiclient_cert.pem │ └── apiclient_key.pem ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ └── 2019_08_19_000000_create_failed_jobs_table.php └── seeds │ └── DatabaseSeeder.php ├── docs ├── address.sql ├── bat │ ├── queue.bat │ └── task.bat ├── fund_fee_rule.sql ├── label.sql ├── order_category.sql ├── 全民帮帮开源核心业务流程说明.docx ├── 发单postman相关接口.json └── 用户相关postman相关接口.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── error │ ├── 400.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── 501.html │ ├── 502.html │ ├── 503.html │ ├── 504.html │ ├── 505.html │ ├── 506.html │ ├── 507.html │ ├── 509.html │ ├── 510.html │ ├── ApacheIndex.html │ └── index.html ├── favicon.ico ├── index.php ├── robots.txt ├── static │ ├── css │ │ └── main.css │ ├── imgs │ │ └── icon │ │ │ ├── auth-fail.png │ │ │ └── auth-success.png │ ├── js │ │ ├── axios.min.js │ │ ├── crypto-js.js │ │ ├── mixin.js │ │ ├── request.js │ │ ├── setting.js │ │ └── vue.js │ └── libs │ │ └── swiper │ │ ├── swiper.min.css │ │ └── swiper.min.js ├── vendor │ └── horizon │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── img │ │ ├── favicon.png │ │ ├── horizon.svg │ │ └── sprite.svg │ │ └── mix-manifest.json └── web.config ├── readme.md ├── readme.txt ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ └── log-viewer │ │ ├── ar │ │ ├── general.php │ │ └── levels.php │ │ ├── bg │ │ ├── general.php │ │ └── levels.php │ │ ├── de │ │ ├── general.php │ │ └── levels.php │ │ ├── en │ │ ├── general.php │ │ └── levels.php │ │ ├── es │ │ ├── general.php │ │ └── levels.php │ │ ├── et │ │ ├── general.php │ │ └── levels.php │ │ ├── fa │ │ ├── general.php │ │ └── levels.php │ │ ├── fr │ │ ├── general.php │ │ └── levels.php │ │ ├── hu │ │ ├── general.php │ │ └── levels.php │ │ ├── hy │ │ ├── general.php │ │ └── levels.php │ │ ├── id │ │ ├── general.php │ │ └── levels.php │ │ ├── it │ │ ├── general.php │ │ └── levels.php │ │ ├── ja │ │ ├── general.php │ │ └── levels.php │ │ ├── ko │ │ ├── general.php │ │ └── levels.php │ │ ├── ms │ │ ├── general.php │ │ └── levels.php │ │ ├── nl │ │ ├── general.php │ │ └── levels.php │ │ ├── pl │ │ ├── general.php │ │ └── levels.php │ │ ├── pt-BR │ │ ├── general.php │ │ └── levels.php │ │ ├── ro │ │ ├── general.php │ │ └── levels.php │ │ ├── ru │ │ ├── general.php │ │ └── levels.php │ │ ├── sv │ │ ├── general.php │ │ └── levels.php │ │ ├── th │ │ ├── general.php │ │ └── levels.php │ │ ├── tr │ │ ├── general.php │ │ └── levels.php │ │ ├── uk │ │ ├── general.php │ │ └── levels.php │ │ ├── zh-TW │ │ ├── general.php │ │ └── levels.php │ │ └── zh │ │ ├── general.php │ │ └── levels.php ├── sass │ └── app.scss └── views │ ├── layout │ └── h5.blade.php │ ├── vendor │ └── log-viewer │ │ ├── bootstrap-3 │ │ ├── _master.blade.php │ │ ├── dashboard.blade.php │ │ ├── logs.blade.php │ │ └── show.blade.php │ │ └── bootstrap-4 │ │ ├── _master.blade.php │ │ ├── dashboard.blade.php │ │ ├── logs.blade.php │ │ └── show.blade.php │ ├── web │ ├── callback │ │ └── alipay │ │ │ └── login.blade.php │ └── content │ │ └── article │ │ ├── detail.blade.php │ │ └── list.blade.php │ └── welcome.blade.php ├── routes ├── admin.php ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Bootstrap.php ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── 全民帮帮开源核心业务流程说明.docx /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/SuperCooperationApi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.idea/SuperCooperationApi.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Common/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Common/UploadController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Fee/FeeManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Fee/FeeManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Funds/AccountManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Funds/AccountManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Funds/PayManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Funds/PayManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Funds/WithDrawManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Funds/WithDrawManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/IndexController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Message/IMController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Message/IMController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Permission/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Permission/AdminController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Permission/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Permission/ApiController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Permission/ApiGroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Permission/ApiGroupController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Permission/ResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Permission/ResourceController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Permission/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Permission/RoleController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Permission/SystemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Permission/SystemController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Pool/ArticleCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Pool/ArticleCategoryController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Pool/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Pool/ArticleController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Pool/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Pool/ConfigController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Pool/UpgradeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Pool/UpgradeController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/ScController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/ScController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Statistics/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Statistics/IndexController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Task/EmployerManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Task/EmployerManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Task/HelperManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Task/HelperManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/Task/TaskCategoryManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/Task/TaskCategoryManagerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/User/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/User/CustomerController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/User/FeedbackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/User/FeedbackController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/User/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Admin/Controllers/User/UserController.php -------------------------------------------------------------------------------- /app/Bridges/Message/CommentMessageBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Message/CommentMessageBridge.php -------------------------------------------------------------------------------- /app/Bridges/Message/IMBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Message/IMBridge.php -------------------------------------------------------------------------------- /app/Bridges/Message/IMUserBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Message/IMUserBridge.php -------------------------------------------------------------------------------- /app/Bridges/Message/MessageBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Message/MessageBridge.php -------------------------------------------------------------------------------- /app/Bridges/Message/PushBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Message/PushBridge.php -------------------------------------------------------------------------------- /app/Bridges/Permission/AccessBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Permission/AccessBridge.php -------------------------------------------------------------------------------- /app/Bridges/Permission/AdminBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Permission/AdminBridge.php -------------------------------------------------------------------------------- /app/Bridges/Permission/AdminLogBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Permission/AdminLogBridge.php -------------------------------------------------------------------------------- /app/Bridges/Permission/BasePermissionBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Permission/BasePermissionBridge.php -------------------------------------------------------------------------------- /app/Bridges/Permission/RoleBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Permission/RoleBridge.php -------------------------------------------------------------------------------- /app/Bridges/Pool/AddressBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Pool/AddressBridge.php -------------------------------------------------------------------------------- /app/Bridges/Pool/ArticleBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Pool/ArticleBridge.php -------------------------------------------------------------------------------- /app/Bridges/Pool/ArticleCategoryBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Pool/ArticleCategoryBridge.php -------------------------------------------------------------------------------- /app/Bridges/Pool/BasePoolBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Pool/BasePoolBridge.php -------------------------------------------------------------------------------- /app/Bridges/Pool/GlobalConfigBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Pool/GlobalConfigBridge.php -------------------------------------------------------------------------------- /app/Bridges/Pool/YunTuBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Pool/YunTuBridge.php -------------------------------------------------------------------------------- /app/Bridges/ScBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/ScBridge.php -------------------------------------------------------------------------------- /app/Bridges/Statistics/TaskDayBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Statistics/TaskDayBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/AccountBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/AccountBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/Admin/EmployerManagerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/Admin/EmployerManagerBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/Admin/FeeManagerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/Admin/FeeManagerBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/Admin/HelperManagerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/Admin/HelperManagerBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/Admin/WithDrawManagerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/Admin/WithDrawManagerBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/Category/TaskCategoryManagerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/Category/TaskCategoryManagerBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/CommentBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/CommentBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/CompensateBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/CompensateBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/DetailTaskOrderBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/DetailTaskOrderBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/EmployerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/EmployerBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/HelperBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/HelperBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/InoutLogBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/InoutLogBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/PayBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/PayBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/PayTaskOrderBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/PayTaskOrderBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/RefundBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/RefundBridge.php -------------------------------------------------------------------------------- /app/Bridges/Trade/WithDrawBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/Trade/WithDrawBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/AcceptPushBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/AcceptPushBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/BlackBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/BlackBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/CertificationBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/CertificationBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/CodeBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/CodeBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/CustomerBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/CustomerBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/FeedbackBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/FeedbackBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/LabelBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/LabelBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/UserBankCardBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/UserBankCardBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/UserBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/UserBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/UserPositionBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/UserPositionBridge.php -------------------------------------------------------------------------------- /app/Bridges/User/UserPushBridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Bridges/User/UserPushBridge.php -------------------------------------------------------------------------------- /app/Console/Commands/CheckYunTuEmployerMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Console/Commands/CheckYunTuEmployerMap.php -------------------------------------------------------------------------------- /app/Console/Commands/Heart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Console/Commands/Heart.php -------------------------------------------------------------------------------- /app/Console/Commands/TaskOverdue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Console/Commands/TaskOverdue.php -------------------------------------------------------------------------------- /app/Console/Commands/TaskOvertimeComplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Console/Commands/TaskOvertimeComplete.php -------------------------------------------------------------------------------- /app/Console/Commands/TaskSendMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Console/Commands/TaskSendMessage.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Consts/CacheConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/CacheConst.php -------------------------------------------------------------------------------- /app/Consts/CertificateConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/CertificateConst.php -------------------------------------------------------------------------------- /app/Consts/DBConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/DBConnection.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/FeeErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/FeeErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/MessageErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/MessageErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/PayErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/PayErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/PoolErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/PoolErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/ReceiveErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/ReceiveErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/RefundErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/RefundErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/RequestErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/RequestErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/SmsErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/SmsErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/TaskOrderErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/TaskOrderErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/TelephoneErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/TelephoneErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/UserErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/UserErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorCode/WithdrawErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorCode/WithdrawErrorCode.php -------------------------------------------------------------------------------- /app/Consts/ErrorConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/ErrorConst.php -------------------------------------------------------------------------------- /app/Consts/FeedbackConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/FeedbackConst.php -------------------------------------------------------------------------------- /app/Consts/GlobalConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/GlobalConst.php -------------------------------------------------------------------------------- /app/Consts/MessageConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/MessageConst.php -------------------------------------------------------------------------------- /app/Consts/PermissionConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/PermissionConst.php -------------------------------------------------------------------------------- /app/Consts/RealNameAuthConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/RealNameAuthConst.php -------------------------------------------------------------------------------- /app/Consts/SmsConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/SmsConst.php -------------------------------------------------------------------------------- /app/Consts/TelephoneConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/TelephoneConst.php -------------------------------------------------------------------------------- /app/Consts/Trade/FeeConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/Trade/FeeConst.php -------------------------------------------------------------------------------- /app/Consts/Trade/OrderConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/Trade/OrderConst.php -------------------------------------------------------------------------------- /app/Consts/Trade/PayConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/Trade/PayConst.php -------------------------------------------------------------------------------- /app/Consts/Trade/RefundConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/Trade/RefundConst.php -------------------------------------------------------------------------------- /app/Consts/Trade/WithDrawConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/Trade/WithDrawConst.php -------------------------------------------------------------------------------- /app/Consts/UploadFileConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/UploadFileConst.php -------------------------------------------------------------------------------- /app/Consts/UserConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Consts/UserConst.php -------------------------------------------------------------------------------- /app/Events/Funds/WithDrawEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/Funds/WithDrawEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskAddEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskAddEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskCompleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskCompleteEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskConfirmReceiveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskConfirmReceiveEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskDeliveryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskDeliveryEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskEmployerCancelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskEmployerCancelEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskHelperCancelEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskHelperCancelEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskHelperCompensatePayEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskHelperCompensatePayEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskReceiveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskReceiveEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskRefuseDeliveryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskRefuseDeliveryEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskReverseStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskReverseStartEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskStartEvent.php -------------------------------------------------------------------------------- /app/Events/TaskOrder/TaskUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/TaskOrder/TaskUpdateEvent.php -------------------------------------------------------------------------------- /app/Events/User/LoginEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/User/LoginEvent.php -------------------------------------------------------------------------------- /app/Events/User/LogoutEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/User/LogoutEvent.php -------------------------------------------------------------------------------- /app/Events/User/RegisterEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/User/RegisterEvent.php -------------------------------------------------------------------------------- /app/Events/User/UpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Events/User/UpdatedEvent.php -------------------------------------------------------------------------------- /app/Exceptions/BusinessException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Exceptions/BusinessException.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Facades/Push.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Facades/Push.php -------------------------------------------------------------------------------- /app/Helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Helpers/Helper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Common/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Common/ConfigController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Common/RecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Common/RecordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Common/UpgradeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Common/UpgradeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Common/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Common/UploadController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Message/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Message/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Message/IMController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Message/IMController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Message/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Message/MessageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Message/NoticeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Message/NoticeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Message/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Message/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Message/PushController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Message/PushController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pool/AddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Pool/AddressController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pool/ArticleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Pool/ArticleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pool/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Pool/ConfigController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pool/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Pool/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Employer/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Employer/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Helper/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Helper/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Income/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Income/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Income/WithDrawController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Income/WithDrawController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Order/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Order/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Order/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Order/SearchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Trade/Pay/PayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/Trade/Pay/PayController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/AddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/AddressController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/AlipayController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/AlipayController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/BankController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/BankController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/BlackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/BlackController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/CertificateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/CertificateController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/CertificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/CertificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/FeedbackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/FeedbackController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/LabelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/LabelController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Controllers/User/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/Admin.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/LogViewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/LogViewer.php -------------------------------------------------------------------------------- /app/Http/Middleware/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/Permission.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/Sign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/Sign.php -------------------------------------------------------------------------------- /app/Http/Middleware/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/Token.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Jobs/AdminLogJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Jobs/AdminLogJob.php -------------------------------------------------------------------------------- /app/Jobs/Push/BindCidJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Jobs/Push/BindCidJob.php -------------------------------------------------------------------------------- /app/Jobs/Push/BindPhoneJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Jobs/Push/BindPhoneJob.php -------------------------------------------------------------------------------- /app/Jobs/Push/PushJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Jobs/Push/PushJob.php -------------------------------------------------------------------------------- /app/Listeners/Funds/WithDrawSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/Funds/WithDrawSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/ScEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/ScEventListener.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskAddEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskAddEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskCompleteEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskCompleteEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskConfirmReceiveEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskConfirmReceiveEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskDeliveryEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskDeliveryEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskEmployerCancelSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskEmployerCancelSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskHelperCancelEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskHelperCancelEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskHelperCompensatePayEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskHelperCompensatePayEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskReceiveEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskReceiveEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskRefuseDeliverySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskRefuseDeliverySubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskReverseStartEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskReverseStartEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskStartEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskStartEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/TaskOrder/TaskUpdateEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/TaskOrder/TaskUpdateEventSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/UserEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Listeners/UserEventSubscriber.php -------------------------------------------------------------------------------- /app/Models/EloquentTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/EloquentTree.php -------------------------------------------------------------------------------- /app/Models/Message/BaseMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/BaseMessage.php -------------------------------------------------------------------------------- /app/Models/Message/Comment/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Comment/Comment.php -------------------------------------------------------------------------------- /app/Models/Message/Comment/CommentRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Comment/CommentRelation.php -------------------------------------------------------------------------------- /app/Models/Message/Im/ImMessageRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Im/ImMessageRelation.php -------------------------------------------------------------------------------- /app/Models/Message/Im/MessageImPrimary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Im/MessageImPrimary.php -------------------------------------------------------------------------------- /app/Models/Message/ImUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/ImUser.php -------------------------------------------------------------------------------- /app/Models/Message/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Message.php -------------------------------------------------------------------------------- /app/Models/Message/MessageCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/MessageCounter.php -------------------------------------------------------------------------------- /app/Models/Message/MessageRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/MessageRelation.php -------------------------------------------------------------------------------- /app/Models/Message/MessageReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/MessageReply.php -------------------------------------------------------------------------------- /app/Models/Message/Notice/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Notice/Notice.php -------------------------------------------------------------------------------- /app/Models/Message/Notice/NoticeRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Notice/NoticeRelation.php -------------------------------------------------------------------------------- /app/Models/Message/Order/OrderNotice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Order/OrderNotice.php -------------------------------------------------------------------------------- /app/Models/Message/Order/OrderNoticeRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Order/OrderNoticeRelation.php -------------------------------------------------------------------------------- /app/Models/Message/PushTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/PushTask.php -------------------------------------------------------------------------------- /app/Models/Message/PushTaskUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/PushTaskUser.php -------------------------------------------------------------------------------- /app/Models/Message/Reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Message/Reply.php -------------------------------------------------------------------------------- /app/Models/Permission/AdminLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/AdminLog.php -------------------------------------------------------------------------------- /app/Models/Permission/AdminRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/AdminRole.php -------------------------------------------------------------------------------- /app/Models/Permission/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/Api.php -------------------------------------------------------------------------------- /app/Models/Permission/ApiGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/ApiGroup.php -------------------------------------------------------------------------------- /app/Models/Permission/BasePermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/BasePermission.php -------------------------------------------------------------------------------- /app/Models/Permission/Cache/ApiCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/Cache/ApiCache.php -------------------------------------------------------------------------------- /app/Models/Permission/Cache/ResourceCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/Cache/ResourceCache.php -------------------------------------------------------------------------------- /app/Models/Permission/Cache/VisitCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/Cache/VisitCache.php -------------------------------------------------------------------------------- /app/Models/Permission/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/Resource.php -------------------------------------------------------------------------------- /app/Models/Permission/ResourceApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/ResourceApi.php -------------------------------------------------------------------------------- /app/Models/Permission/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/Role.php -------------------------------------------------------------------------------- /app/Models/Permission/RoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/RoleResource.php -------------------------------------------------------------------------------- /app/Models/Permission/System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Permission/System.php -------------------------------------------------------------------------------- /app/Models/Pool/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/Address.php -------------------------------------------------------------------------------- /app/Models/Pool/AppVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/AppVersion.php -------------------------------------------------------------------------------- /app/Models/Pool/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/Article.php -------------------------------------------------------------------------------- /app/Models/Pool/ArticleCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/ArticleCategory.php -------------------------------------------------------------------------------- /app/Models/Pool/BasePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/BasePool.php -------------------------------------------------------------------------------- /app/Models/Pool/GlobalConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/GlobalConfig.php -------------------------------------------------------------------------------- /app/Models/Pool/PhoneProtect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/PhoneProtect.php -------------------------------------------------------------------------------- /app/Models/Pool/PhoneProtectCancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/PhoneProtectCancel.php -------------------------------------------------------------------------------- /app/Models/Pool/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/Printer.php -------------------------------------------------------------------------------- /app/Models/Pool/PrinterRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/PrinterRecord.php -------------------------------------------------------------------------------- /app/Models/Pool/YunTuTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/YunTuTable.php -------------------------------------------------------------------------------- /app/Models/Pool/YunTuTableData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Pool/YunTuTableData.php -------------------------------------------------------------------------------- /app/Models/ScModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/ScModel.php -------------------------------------------------------------------------------- /app/Models/Statistics/BaseDay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Statistics/BaseDay.php -------------------------------------------------------------------------------- /app/Models/Statistics/TaskDay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Statistics/TaskDay.php -------------------------------------------------------------------------------- /app/Models/Trade/BaseTrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/BaseTrade.php -------------------------------------------------------------------------------- /app/Models/Trade/Entity/TaskOrderEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Entity/TaskOrderEntity.php -------------------------------------------------------------------------------- /app/Models/Trade/Fee/FeeLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fee/FeeLog.php -------------------------------------------------------------------------------- /app/Models/Trade/Fee/FeeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fee/FeeRule.php -------------------------------------------------------------------------------- /app/Models/Trade/Fee/RefundFeeLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fee/RefundFeeLog.php -------------------------------------------------------------------------------- /app/Models/Trade/Fund/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fund/Account.php -------------------------------------------------------------------------------- /app/Models/Trade/Fund/AccountChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fund/AccountChange.php -------------------------------------------------------------------------------- /app/Models/Trade/Fund/FreezeLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fund/FreezeLog.php -------------------------------------------------------------------------------- /app/Models/Trade/Fund/InoutLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fund/InoutLog.php -------------------------------------------------------------------------------- /app/Models/Trade/Fund/WithdrawApply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fund/WithdrawApply.php -------------------------------------------------------------------------------- /app/Models/Trade/Fund/WithdrawApplyFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Fund/WithdrawApplyFailed.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Address.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Cancel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Cancel.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Category.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Compensate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Compensate.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Defer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Defer.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/DeliveryRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/DeliveryRecord.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/PriceChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/PriceChange.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/ReceiverOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/ReceiverOrder.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Search.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Service.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/StateChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/StateChange.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/TaskOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/TaskOrder.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/Text.php -------------------------------------------------------------------------------- /app/Models/Trade/Order/TypeChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Order/TypeChange.php -------------------------------------------------------------------------------- /app/Models/Trade/Pay/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Pay/Pay.php -------------------------------------------------------------------------------- /app/Models/Trade/Pay/PayMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Pay/PayMessage.php -------------------------------------------------------------------------------- /app/Models/Trade/Pay/PayRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/Trade/Pay/PayRefund.php -------------------------------------------------------------------------------- /app/Models/User/BaseUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/BaseUser.php -------------------------------------------------------------------------------- /app/Models/User/ChangeLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/ChangeLog.php -------------------------------------------------------------------------------- /app/Models/User/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/Label.php -------------------------------------------------------------------------------- /app/Models/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/User.php -------------------------------------------------------------------------------- /app/Models/User/UserAcceptConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserAcceptConfig.php -------------------------------------------------------------------------------- /app/Models/User/UserAcceptConfigCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserAcceptConfigCategory.php -------------------------------------------------------------------------------- /app/Models/User/UserAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserAddress.php -------------------------------------------------------------------------------- /app/Models/User/UserAddressPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserAddressPosition.php -------------------------------------------------------------------------------- /app/Models/User/UserBankCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserBankCard.php -------------------------------------------------------------------------------- /app/Models/User/UserBlack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserBlack.php -------------------------------------------------------------------------------- /app/Models/User/UserCodeVerify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserCodeVerify.php -------------------------------------------------------------------------------- /app/Models/User/UserCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserCustomer.php -------------------------------------------------------------------------------- /app/Models/User/UserFace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserFace.php -------------------------------------------------------------------------------- /app/Models/User/UserFeedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserFeedback.php -------------------------------------------------------------------------------- /app/Models/User/UserGrantLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserGrantLogin.php -------------------------------------------------------------------------------- /app/Models/User/UserLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserLabel.php -------------------------------------------------------------------------------- /app/Models/User/UserLoginRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserLoginRecord.php -------------------------------------------------------------------------------- /app/Models/User/UserPush.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserPush.php -------------------------------------------------------------------------------- /app/Models/User/UserRealName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserRealName.php -------------------------------------------------------------------------------- /app/Models/User/UserSkillCertify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Models/User/UserSkillCertify.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/PushServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/PushServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/Common/RecordService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Common/RecordService.php -------------------------------------------------------------------------------- /app/Services/Common/TelephoneService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Common/TelephoneService.php -------------------------------------------------------------------------------- /app/Services/Common/UpgradeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Common/UpgradeService.php -------------------------------------------------------------------------------- /app/Services/Common/UploadService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Common/UploadService.php -------------------------------------------------------------------------------- /app/Services/Message/BaseMessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/BaseMessageService.php -------------------------------------------------------------------------------- /app/Services/Message/CommentMessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/CommentMessageService.php -------------------------------------------------------------------------------- /app/Services/Message/Entity/CommentEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/Entity/CommentEntity.php -------------------------------------------------------------------------------- /app/Services/Message/IMService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/IMService.php -------------------------------------------------------------------------------- /app/Services/Message/IMUserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/IMUserService.php -------------------------------------------------------------------------------- /app/Services/Message/ImMessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/ImMessageService.php -------------------------------------------------------------------------------- /app/Services/Message/MessageCounterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/MessageCounterService.php -------------------------------------------------------------------------------- /app/Services/Message/MessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/MessageService.php -------------------------------------------------------------------------------- /app/Services/Message/NoticeMessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/NoticeMessageService.php -------------------------------------------------------------------------------- /app/Services/Message/OrderMessageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/OrderMessageService.php -------------------------------------------------------------------------------- /app/Services/Message/PushService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Message/PushService.php -------------------------------------------------------------------------------- /app/Services/Permission/AccessService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/AccessService.php -------------------------------------------------------------------------------- /app/Services/Permission/AdminLogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/AdminLogService.php -------------------------------------------------------------------------------- /app/Services/Permission/AdminService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/AdminService.php -------------------------------------------------------------------------------- /app/Services/Permission/ApiGroupService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/ApiGroupService.php -------------------------------------------------------------------------------- /app/Services/Permission/ApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/ApiService.php -------------------------------------------------------------------------------- /app/Services/Permission/BasePermissionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/BasePermissionService.php -------------------------------------------------------------------------------- /app/Services/Permission/ResourceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/ResourceService.php -------------------------------------------------------------------------------- /app/Services/Permission/RoleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/RoleService.php -------------------------------------------------------------------------------- /app/Services/Permission/SystemService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Permission/SystemService.php -------------------------------------------------------------------------------- /app/Services/Pool/AddressService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Pool/AddressService.php -------------------------------------------------------------------------------- /app/Services/Pool/ArticleCategoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Pool/ArticleCategoryService.php -------------------------------------------------------------------------------- /app/Services/Pool/ArticleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Pool/ArticleService.php -------------------------------------------------------------------------------- /app/Services/Pool/ConfigService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Pool/ConfigService.php -------------------------------------------------------------------------------- /app/Services/Pool/PrinterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Pool/PrinterService.php -------------------------------------------------------------------------------- /app/Services/Pool/YunTuService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Pool/YunTuService.php -------------------------------------------------------------------------------- /app/Services/ScService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/ScService.php -------------------------------------------------------------------------------- /app/Services/Statistics/TaskDayService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Statistics/TaskDayService.php -------------------------------------------------------------------------------- /app/Services/Trade/Category/TaskCategoryManagerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Category/TaskCategoryManagerService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fee/Admin/FeeManagerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fee/Admin/FeeManagerService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fee/FeeTaskService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fee/FeeTaskService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fund/AccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fund/AccountService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fund/Admin/WithDrawManagerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fund/Admin/WithDrawManagerService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fund/CompensateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fund/CompensateService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fund/InoutLogService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fund/InoutLogService.php -------------------------------------------------------------------------------- /app/Services/Trade/Fund/WithDrawService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Fund/WithDrawService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Admin/EmployerManagerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Admin/EmployerManagerService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Admin/HelperManagerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Admin/HelperManagerService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/BaseTaskOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/BaseTaskOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/CommentService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/CommentService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/AddTaskOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/AddTaskOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/CancelOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/CancelOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/ConfirmTaskOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/ConfirmTaskOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/DetailTaskOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/DetailTaskOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/EmployerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/EmployerService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/ListOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/ListOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Employer/UpdateTaskOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Employer/UpdateTaskOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Helper/HelperService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Helper/HelperService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Helper/ListOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Helper/ListOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Helper/ReceiveTaskOrderService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Helper/ReceiveTaskOrderService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/Helper/SearchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/Helper/SearchService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/State/TaskOrderStateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/State/TaskOrderStateService.php -------------------------------------------------------------------------------- /app/Services/Trade/Order/TaskNoticeService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Order/TaskNoticeService.php -------------------------------------------------------------------------------- /app/Services/Trade/Pay/Gateway/BalancePayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgxj/SuperCooperationAPI/HEAD/app/Services/Trade/Pay/Gateway/BalancePayment.php -------------------------------------------------------------------------------- /app/Services/Trade/Pay/Gateway/ScAlipay.php: -------------------------------------------------------------------------------- 1 |