修复删除 用户签到表错误

This commit is contained in:
lingling 2025-02-22 22:14:31 +08:00
parent b5daafd762
commit a79c65e33b
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class UserDao
} }
UserReward::where('user_id',$user_id)->delete(); UserReward::where('user_id',$user_id)->delete();
Withdraw::where('user_id')->delete(); Withdraw::where('user_id')->delete();
Signlog::where('user_id',$user_id)->delete(); Signlog::where('userid',$user_id)->delete();
return 0; return 0;
} }
/** /**