package handler import ( "youngee_b_api/consts" "youngee_b_api/model/http_model" "youngee_b_api/service" "youngee_b_api/util" "github.com/gin-gonic/gin" "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus" ) // WrapGetSketchInfoHandler func WrapGetSketchInfoHandler(ctx *gin.Context) { handler := newGetSketchInfoHandler(ctx) baseRun(handler) } func newGetSketchInfoHandler(ctx *gin.Context) *GetSketchInfoHandler { return &GetSketchInfoHandler{ req: http_model.NewGetSketchInfoRequest(), resp: http_model.NewGetSketchInfoResponse(), ctx: ctx, } } type GetSketchInfoHandler struct { req *http_model.GetSketchInfoRequest resp *http_model.CommonResponse ctx *gin.Context } func (h *GetSketchInfoHandler) getRequest() interface{} { return h.req } func (h *GetSketchInfoHandler) getContext() *gin.Context { return h.ctx } func (h *GetSketchInfoHandler) getResponse() interface{} { return h.resp } func (h *GetSketchInfoHandler) run() { data := *&http_model.GetSketchInfoRequest{} data = *h.req res, err := service.Sketch.GetSketchInfo(h.ctx, data) if err != nil { // 数据库查询失败,返回5001 logrus.Errorf("[GetSketchInfoHandler] call GetByID err:%+v\n", err) util.HandlerPackErrorResp(h.resp, consts.ErrorParamCheck, "") log.Info("GetProduct fail,req:%+v", h.req) return } h.resp.Data = res h.resp.Status = consts.ErrorSuccess } func (h *GetSketchInfoHandler) checkParam() error { return nil }