|
@@ -2,6 +2,7 @@
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
namespace App\Services;
|
|
|
|
|
|
|
|
|
|
+use App\Models\PcCao;
|
|
|
use App\Models\PcCaoHistory;
|
|
use App\Models\PcCaoHistory;
|
|
|
use App\Models\PcIssue;
|
|
use App\Models\PcIssue;
|
|
|
use App\Models\PcPrediction;
|
|
use App\Models\PcPrediction;
|
|
@@ -73,7 +74,8 @@ class PcIssueService extends BaseService
|
|
|
|
|
|
|
|
//预测结果
|
|
//预测结果
|
|
|
PcPrediction::result($item->issue_no, $item->winning_numbers, $awards);
|
|
PcPrediction::result($item->issue_no, $item->winning_numbers, $awards);
|
|
|
-// PcCao::updateData($awards);
|
|
|
|
|
|
|
+ //自开奖以来的结果统计
|
|
|
|
|
+ PcCao::updateData($awards);
|
|
|
//每天开奖结果统计
|
|
//每天开奖结果统计
|
|
|
PcCaoHistory::updateData($awards);
|
|
PcCaoHistory::updateData($awards);
|
|
|
|
|
|