Files
hyperf_service/app/Service/Common/Account/BalanceOperateService.php
2025-04-02 16:05:24 +08:00

24 lines
540 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Common\Account;
class BalanceOperateService extends AccountOperateInterface
{
public function inc(int $userId, string $value, int $businessCode, array $data, string $description = '',): bool
{
return true;
}
public function dec(int $userId, string $value, int $businessCode, array $data, string $description = '',): bool
{
return true;
}
}