// // XPEnterpriseProtocol.h // xplan-ios // // Created by 冯硕 on 2022/5/14. // #import NS_ASSUME_NONNULL_BEGIN @class EnterpriseRechargeListInfoModel, WalletInfoModel; @protocol XPEnterpriseRechargeProtocol ///请求钱包余额信息 - (void)getUserWalletInfo:(WalletInfoModel *)balanceInfo; ///获取充值列表成功 - (void)getRechargeListSuccess:(EnterpriseRechargeListInfoModel *)info; ///请求订单成功 - (void)requestPaySuccess:(id)data payChannel:(NSString *)payChannel; @end NS_ASSUME_NONNULL_END