mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改注释
This commit is contained in:
parent
3a0f5b1953
commit
9bbe01a4b8
@ -6,7 +6,6 @@ use app\data\model\ShopOrder;
|
||||
use app\data\model\ShopOrderItem;
|
||||
use app\data\service\OrderService;
|
||||
use think\admin\Command;
|
||||
use think\admin\Exception;
|
||||
use think\console\Input;
|
||||
use think\console\Output;
|
||||
use think\Model;
|
||||
@ -26,10 +25,10 @@ class OrderClean extends Command
|
||||
|
||||
/**
|
||||
* 业务指令执行
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @param \think\console\Input $input
|
||||
* @param \think\console\Output $output
|
||||
* @return void
|
||||
* @throws Exception
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
@ -39,7 +38,8 @@ class OrderClean extends Command
|
||||
|
||||
/**
|
||||
* 自动取消30分钟未支付的订单
|
||||
* @throws Exception
|
||||
* @return void
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
private function _autoCancelOrder()
|
||||
{
|
||||
@ -60,7 +60,8 @@ class OrderClean extends Command
|
||||
|
||||
/**
|
||||
* 自动清理已经取消的订单
|
||||
* @throws Exception
|
||||
* @return void
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
private function _autoRemoveOrder()
|
||||
{
|
||||
|
@ -25,8 +25,8 @@ class UserAgent extends Command
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @param \think\console\Input $input
|
||||
* @param \think\console\Output $output
|
||||
* @return void
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
|
@ -6,7 +6,6 @@ use app\data\model\DataUser;
|
||||
use app\data\service\UserBalanceService;
|
||||
use app\data\service\UserRebateService;
|
||||
use think\admin\Command;
|
||||
use think\admin\Exception;
|
||||
use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
@ -24,10 +23,11 @@ class UserAmount extends Command
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @param \think\console\Input $input
|
||||
* @param \think\console\Output $output
|
||||
* @return void
|
||||
* @throws Exception
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
|
@ -28,10 +28,11 @@ class UserTransfer extends Command
|
||||
|
||||
/**
|
||||
* 执行微信提现操作
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @param \think\console\Input $input
|
||||
* @param \think\console\Output $output
|
||||
* @return void
|
||||
* @throws \think\admin\Exception
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
|
@ -23,10 +23,10 @@ class UserUpgrade extends Command
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Input $input
|
||||
* @param Output $output
|
||||
* @param \think\console\Input $input
|
||||
* @param \think\console\Output $output
|
||||
* @return void
|
||||
* @throws Exception
|
||||
* @throws \think\admin\Exception
|
||||
*/
|
||||
protected function execute(Input $input, Output $output)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user