UniApp:会员码图片兜底、海报下载 Promise、账单移除公排退款、 佣金状态与资产页 NavBar、资产接口 total_points_earned。 后端:推荐人须自报单才得周期佣金;升级前快照等级再发积分; 积分按报单商品数量倍乘;伞下级差按伞下基数传递;直推/伞下任务 统计补充 refund_status;周期佣金在事务内锁推荐人行防竞态; 新增 hjf:verify-agent-config 命令做等级与任务 e2e 验收。 Made-with: Cursor
31 lines
1.4 KiB
PHP
31 lines
1.4 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
// +----------------------------------------------------------------------
|
||
// | Author: liu21st <liu21st@gmail.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | 控制台配置
|
||
// +----------------------------------------------------------------------
|
||
return [
|
||
// 执行用户(Windows下无效)
|
||
'user' => null,
|
||
// 指令定义
|
||
'commands' => [
|
||
'make:dao' => \crmeb\command\Dao::class,
|
||
'make:service' => \crmeb\command\Service::class,
|
||
'install' => \crmeb\command\Install::class,
|
||
'clear:cache' => \app\command\ClearCache::class,
|
||
'reset:password' => \app\command\ResetAdminPwd::class,
|
||
'holiday_gift_push_task' => \app\command\HolidayGiftPushTask::class,
|
||
'hjf:release-points' => \app\command\HjfReleasePoints::class,
|
||
'hjf:patch-rewards' => \app\command\HjfPatchMissingRewards::class,
|
||
'hjf:verify-agent-config' => \app\command\HjfVerifyAgentConfig::class,
|
||
],
|
||
];
|