fix: admin database charset
CI / changes (push) Successful in 1s
CI / docker-bff (push) Successful in 2s
CI / docker-product (push) Failing after 1s

This commit is contained in:
zzw
2026-08-07 16:20:31 +08:00
parent 3b84d201e2
commit 29ffc24bbb
12 changed files with 55 additions and 38 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ func NewInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *InfoLogic {
func (l *InfoLogic) Info(in *product.InfoReq) (*product.Response, error) {
var req validator.ProductInfoValidator
if msg := validateService.ValidateFromProto(in, &req); msg != utils.StringEmpty {
return msgResponse(utils.Ok.Code, msg), nil
return outResponse(utils.ErrorParams, msg), nil
}
var info dao.ProductInfo