feat : finish order
This commit is contained in:
24
app/Service/Common/Account/BalanceOperateService.php
Normal file
24
app/Service/Common/Account/BalanceOperateService.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user