From f8c27ea3275270db9d85c22751350c6242d178d4 Mon Sep 17 00:00:00 2001 From: "shi.zeyuan" Date: Mon, 30 Mar 2020 11:05:56 +0800 Subject: [PATCH] 1.xx --- foot-core/module/analy/service/AnalyService.go | 5 ++++- foot-core/module/analy/service/C4Service.go | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/foot-core/module/analy/service/AnalyService.go b/foot-core/module/analy/service/AnalyService.go index 8d3b28c..959ef71 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 33df39d..b294405 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 } -- GitLab