diff --git a/foot-core/module/analy/service/AnalyService.go b/foot-core/module/analy/service/AnalyService.go index 8d3b28c80122e010e78f324001ec23676e9d08ba..959ef71da654312db0816f7b1c7af58cc1d56ed9 100644 --- a/foot-core/module/analy/service/AnalyService.go +++ b/foot-core/module/analy/service/AnalyService.go @@ -282,7 +282,10 @@ WHERE DATE_ADD(ar.MatchDate, INTERVAL 6 HOUR) > NOW() if strings.EqualFold(e.AlFlag, "E2") || strings.EqualFold(e.AlFlag, "C1") || strings.EqualFold(e.AlFlag, "C2") { //E2使用特别自身的验证结果方法 e.Result = this.IsRight2Option(last, e) - } else { + } else if strings.EqualFold(e.AlFlag, "C4"){ + //nothing todo + return + }else { e.Result = this.IsRight(last, e) } this.Modify(e) diff --git a/foot-core/module/analy/service/C4Service.go b/foot-core/module/analy/service/C4Service.go index 33df39d8d30dec62df5f20065bf9aff00d5284c1..b2944056e5ef318a1590db9331d22b566bfdb209 100644 --- a/foot-core/module/analy/service/C4Service.go +++ b/foot-core/module/analy/service/C4Service.go @@ -67,8 +67,8 @@ func (this *C4Service) analyStub(v *pojo.MatchLast) (int, *entity5.AnalyResult) //限制初盘,即时盘让球在0.25以内 if math.Abs(a18Bet.SLetBall-a18Bet.ELetBall) > 0.25 { - temp_data.TOVoid = true - temp_data.TOVoidDesc = "界限" + //temp_data.TOVoid = true + //temp_data.TOVoidDesc = "界限" return -2, temp_data }