fix comb298y

This commit is contained in:
liangzai 2025-06-14 13:58:38 +08:00
parent 937d88c9aa
commit 191f6799a0

View File

@ -129,14 +129,8 @@ func (l *COMB298YLogic) COMB298Y(req *types.Request) (resp string, err *errs.App
if apiRequests[i].Service == "west" {
// 西部服务先加密后mapping
westConfig := l.svcCtx.Config.WestConfig
// 将结构体转换为map
dataMap, err := common.StructToMap(data)
if err != nil {
logx.Errorf("结构体转map失败%v", err)
return "", errs.ErrSystem
}
// 加密
encryptedRequest, encryptErr := common.EncryptStructFields(dataMap, westConfig.Key)
// 直接使用结构体进行加密
encryptedRequest, encryptErr := common.EncryptStructFields(data, westConfig.Key)
if encryptErr != nil {
logx.Errorf("西部加密错误:%v", encryptErr)
return "", errs.ErrSystem