1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- namespace App\Modules\Finance\Services;
- use App\Modules\Finance\Models\LiquidatedStat;
- class LiquidatedStatService
- {
-
- public static function createOrUpdate($pay_merchant_source, $amount) {
- return LiquidatedStat::createOrUpdate($pay_merchant_source, $amount);
- }
-
- public static function updateAccountBalanceAmount($pay_merchant_source, $amount) {
- return LiquidatedStat::updateAccountBalanceAmount($pay_merchant_source, $amount);
- }
-
- public static function updateAccountBalanceAmountDay($pay_merchant_source, $amount) {
- return LiquidatedStat::updateAccountBalanceAmountDay($pay_merchant_source, $amount);
- }
-
- public static function getLiquidatedStatList() {
- return LiquidatedStat::getLiquidatedStatList();
- }
-
- public static function getLiquidatedStatSingleBySource($pay_merchant_source) {
- return LiquidatedStat::getLiquidatedStatSingleBySource($pay_merchant_source);
- }
- }
|