Fetch the repository succeeded.
package logic
import (
"context"
"database/sql"
"gitee.com/gabbble/app/model/mysql"
"gitee.com/gabbble/comm_pkg/common/constant"
"gitee.com/gabbble/comm_pkg/utils"
"time"
"gitee.com/gabbble/app/apppb"
"gitee.com/gabbble/app/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)
type AppQuestionFeedbackLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewAppQuestionFeedbackLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AppQuestionFeedbackLogic {
return &AppQuestionFeedbackLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *AppQuestionFeedbackLogic) AppQuestionFeedback(in *apppb.AppQuestionFeedbackReq) (*apppb.AppQuestionFeedbackRsp, error) {
fun := utils.GetSelfFuncName() + " --"
_, err := l.svcCtx.ModelInstQuestionFeedback.Insert(l.ctx, &mysql.AppQuestionFeedback{
Id: 0,
Uid: in.Uid,
Uuid: in.Uuid,
Platform: constant.PlatformIDToName(int(in.Platform)),
Email: in.Email,
Content: sql.NullString{
String: in.Content,
Valid: true,
},
Ctime: time.Now().Unix(),
})
if err != nil {
logx.WithContext(l.ctx).Infof("%s Insert Fail: %v, req: %+v", fun, err, in)
return &apppb.AppQuestionFeedbackRsp{
ErrInfo: &apppb.ErrorInfo{
ErrCode: -1,
ErrMsg: err.Error(),
},
}, nil
}
return &apppb.AppQuestionFeedbackRsp{
ErrInfo: &apppb.ErrorInfo{
ErrCode: 0,
ErrMsg: "success",
},
}, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。