尝试解密数据

This commit is contained in:
Rzy 2024-06-19 18:35:10 +08:00
parent 02fdf31829
commit ddb3cd3e5c
1 changed files with 8 additions and 6 deletions

View File

@ -3,9 +3,11 @@ package svc
import (
"github.com/zeromicro/go-zero/core/stores/sqlx"
"github.com/zeromicro/go-zero/rest"
"github.com/zeromicro/go-zero/zrpc"
"rs/cmd/api/internal/config"
"rs/cmd/api/internal/types"
"rs/genModel"
"rs/rpc/transferClient"
)
type ServiceContext struct {
@ -14,15 +16,15 @@ type ServiceContext struct {
}
func NewServiceContext(c config.Config) *ServiceContext {
//conn := zrpc.MustNewClient(zrpc.RpcClientConf{
// Target: c.Nacos.Target,
//})
conn := zrpc.MustNewClient(zrpc.RpcClientConf{
Target: c.Nacos.Target,
})
sqlConn := sqlx.NewMysql(c.DB.Coupon.DataSource)
//client := transferClient.NewTransfer(conn)
client := transferClient.NewTransfer(conn)
base := types.BaseServiceContext{
Config: c,
//TransferRpc: client,
TransferRpc: client,
ProductRedirectConf: genModel.NewProductRedirectConfModel(sqlConn, c.Cache),
Merchant: genModel.NewMerchantModel(sqlConn, c.Cache),
}