|
@@ -970,15 +970,12 @@ func (this *PredictEdbInfoController) Detail() {
|
|
|
calculateList[k] = v
|
|
|
}
|
|
|
}
|
|
|
- fullEdb := new(data_manage.EdbInfoFullClassify)
|
|
|
classifyList, err, errMsg := data.GetFullClassifyByClassifyId(edbInfo.ClassifyId)
|
|
|
if err != nil {
|
|
|
br.Msg = err.Error()
|
|
|
br.ErrMsg = errMsg
|
|
|
return
|
|
|
}
|
|
|
- fullEdb.EdbInfo = edbInfo
|
|
|
- fullEdb.ClassifyList = classifyList
|
|
|
|
|
|
// 拟合残差计算相关系数
|
|
|
var correlationStr string
|
|
@@ -1024,12 +1021,13 @@ func (this *PredictEdbInfoController) Detail() {
|
|
|
}
|
|
|
|
|
|
resp := response.PredictEdbInfo{
|
|
|
- EdbInfo: *fullEdb,
|
|
|
+ EdbInfo: *edbInfo,
|
|
|
RuleType: ruleType,
|
|
|
FixedValue: fixedValue,
|
|
|
CalculateList: calculateList,
|
|
|
RuleList: predictEdbConfList,
|
|
|
CorrelationStr: correlationStr,
|
|
|
+ ClassifyList: classifyList,
|
|
|
}
|
|
|
br.Ret = 200
|
|
|
br.Success = true
|