Ken 6 天之前
父节点
当前提交
059c13b413
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      app/Models/Prediction.php

+ 2 - 2
app/Models/Prediction.php

@@ -7,10 +7,10 @@ class Prediction extends BaseModel
     protected $table = 'prediction';
     protected $fillable = ['issue_no', 'size', 'odd_or_even', 'is_valid', 'winning_numbers'];
 
-    const ODD = 0;//预测单双:单
-    const EVEN = 1;//预测单双:双
     const SIZE_BIG = 1;//预测大小:大
     const SIZE_SMALL = 0;//预测大小:小
+    const ODD = 0;//预测单双:单
+    const EVEN = 1;//预测单双:双
     const VALID_CORRECT = 1;//预测结果:正确
     const VALID_ERROR = 0;//预测结果:错误