Compare commits

..

No commits in common. "73268df33d6d27b58086d0447bc57e3fc66761fe" and "61c582ba8d111fd757d3b6970854be7b01cfcb8f" have entirely different histories.

3 changed files with 35 additions and 6 deletions

View File

@ -304,12 +304,12 @@ class Vip_rewardController
} }
$UserReward = UserReward::where('memo', '首次VIP'.$vip_id.'等级奖励')->where('user_id', $user_id)->get(); $UserReward = UserReward::where('memo', '首次VIP'.$vip_id.'等级奖励')->where('user_id', $user_id)->get();
//判断是否有 //判断是否有
// if ($UserReward->count() > 0) { if ($UserReward->count() > 0) {
// UserRewardDao::base($user_id, 6, $money, 'VIP'.$vip_id.'等级奖励'); UserRewardDao::base($user_id, 6, $money, 'VIP'.$vip_id.'等级奖励');
// }else{ }else{
// UserRewardDao::base($user_id, 6, $new_money, '首次VIP'.$vip_id.'等级奖励'); UserRewardDao::base($user_id, 6, $new_money, '首次VIP'.$vip_id.'等级奖励');
// } }
return ApiResponseApp::success('领取成功'); return ApiResponseApp::success('领取成功');
} }

View File

@ -17,6 +17,35 @@ class Task2
public function onWorkerStart() public function onWorkerStart()
{ {
// // 每秒钟执行一次
// new Crontab('*/1 * * * * *', function(){
// echo date('Y-m-d H:i:s')."\n";
// });
// // 每5秒执行一次
// new Crontab('*/5 * * * * *', function(){
// echo date('Y-m-d H:i:s')."\n";
// });
// // 每分钟执行一次
// new Crontab('0 */1 * * * *', function(){
// echo date('Y-m-d H:i:s')."\n";
// });
// // 每5分钟执行一次
// new Crontab('0 */5 * * * *', function(){
// echo date('Y-m-d H:i:s')."\n";
// });
// // 每分钟的第一秒执行
// new Crontab('1 * * * * *', function(){
// echo date('Y-m-d H:i:s')."\n";
// });
// // 每天的7点50执行注意这里省略了秒位
// new Crontab('50 7 * * *', function(){
// echo date('Y-m-d H:i:s')."\n";
// });
// // 每5秒执行一次 // // 每5秒执行一次
new Crontab('0 */1 * * * *', function () { new Crontab('0 */1 * * * *', function () {
$phones = UserPhone::all(); $phones = UserPhone::all();

View File

@ -51,7 +51,7 @@ class Task3
'income' => 80, 'income' => 80,
]); ]);
//满足则加80积分 //满足则加80积分
UserRewardDao::base($parent->id, 5, 80, '有效用户奖励'); // UserRewardDao::base($parent->id, 5, 80, '有效用户奖励');
} }
} }
$parent->save(); $parent->save();