修改用户首单判断

This commit is contained in:
luofei 2024-02-06 15:00:24 +08:00
parent 98d65a1cad
commit 107b4ed16c

View File

@ -300,7 +300,7 @@ class StoreConsumptionUserDao extends BaseDao
->where('paid', 1)
->whereBetweenTime('pay_time', $startTime, $endTime)
->count();
return intval($count <= 1);
return intval($count <= 0);
}
public function getEndTime($datetime)