This commit is contained in:
laodaming 2023-07-04 17:17:37 +08:00
parent 31d22cda63
commit 3614e90e99

View File

@ -257,7 +257,9 @@ func (l *GetProductInfoLogic) GetProductInfo(req *types.GetProductInfoReq, useri
if !ok || *allModel3dList[key].Status != 1 {
continue
}
thisInfo := allModel3dList[key]
var thisInfo map[string]interface{}
temBytes, _ := json.Marshal(allModel3dList[key])
_ = json.Unmarshal(temBytes, &thisInfo)
}
}
/*