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