feat: 在 SignController 中增加今日签到检查,防止重复签到
This commit is contained in:
parent
06ea9ca773
commit
ee28a0bd76
|
@ -64,6 +64,9 @@ class SignController
|
||||||
if(!UserPhoneLogDao::getOnlineTimeByPhoneTodayId($user_id)){
|
if(!UserPhoneLogDao::getOnlineTimeByPhoneTodayId($user_id)){
|
||||||
return ApiResponseApp::error([],'挂机时长没有超过6小时,暂不能签到');
|
return ApiResponseApp::error([],'挂机时长没有超过6小时,暂不能签到');
|
||||||
}
|
}
|
||||||
|
if(SignDao::search_Sign_today($user_id)==1){
|
||||||
|
return ApiResponseApp::error([],'今天已经签到');
|
||||||
|
}
|
||||||
SignDao::Sign($user_id);
|
SignDao::Sign($user_id);
|
||||||
return ApiResponseApp::success([]);
|
return ApiResponseApp::success([]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue