* [sql] add execution list.

This commit is contained in:
sunguangming
2025-07-24 00:52:28 +00:00
parent 6d3225d9d9
commit c9fcf4f299
2 changed files with 6 additions and 1 deletions
+2
View File
@@ -250,6 +250,8 @@ class holidayModel extends model
$endTime = strtotime($end);
$days = ($endTime - $beginTime) / 86400;
if(!$beginTime) return array();
$dateList = array();
for($i = 0; $i <= $days; $i ++) $dateList[] = date('Y-m-d', strtotime("+{$i} days", $beginTime));