fix:重构合图模块
This commit is contained in:
@@ -15,7 +15,8 @@ AWS:
|
||||
Secret: sjCEv0JxATnPCxno2KNLm0X8oDc7srUR+4vkYhvm
|
||||
Token:
|
||||
BLMService:
|
||||
Url: "http://18.119.109.254:8999"
|
||||
# Url: "http://18.119.109.254:8999"
|
||||
Url: "http://192.168.1.7:8999"
|
||||
LogoCombine:
|
||||
#Url: "http://192.168.1.7:8999/LogoCombine"
|
||||
Url: "http://18.119.109.254:8999/LogoCombine"
|
||||
@@ -57,11 +57,14 @@ func (l *LogoCombineLogic) LogoCombine(req *types.LogoCombineReq, userinfo *auth
|
||||
userId = userinfo.UserId
|
||||
}
|
||||
res, err := l.svcCtx.Repositories.ImageHandle.LogoCombine(l.ctx, &repositories.LogoCombineReq{
|
||||
ResourceKey: req.ResourceKey,
|
||||
TemplateId: req.TemplateId,
|
||||
CombineParam: req.CombineParam,
|
||||
UserId: userId,
|
||||
GuestId: guestId,
|
||||
UserId: userId,
|
||||
GuestId: guestId,
|
||||
TemplateId: req.TemplateId,
|
||||
TemplateTag: req.TemplateTag,
|
||||
Website: req.Website,
|
||||
Slogan: req.Slogan,
|
||||
Phone: req.Phone,
|
||||
Address: req.Address,
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
|
||||
@@ -11,9 +11,12 @@ type ResourceInfoReq struct {
|
||||
}
|
||||
|
||||
type LogoCombineReq struct {
|
||||
ResourceKey string `form:"resource_key"` // 资源唯一标识
|
||||
CombineParam string `form:"combine_param"` // 合图参数
|
||||
TemplateId int64 `form:"template_id"` // 合图参数
|
||||
TemplateId int64 `form:"template_id"` // 合图参数
|
||||
TemplateTag string `form:"template_tag"` // 合图参数
|
||||
Website string `form:"website,optional"` // 合图参数
|
||||
Slogan string `form:"slogan,optional"` // 合图参数
|
||||
Address string `form:"address,optional"` // 合图参数
|
||||
Phone string `form:"phone,optional"` // 合图参数
|
||||
}
|
||||
|
||||
type Request struct {
|
||||
|
||||
Reference in New Issue
Block a user