24 lines
540 B
PHP
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;
|
|
}
|
|
} |