package logic import ( "context" "lone-services/rpc/product/pb" "lone-services/services/product/internal/svc" "github.com/zeromicro/go-zero/core/logx" ) type VerifyFirstLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewVerifyFirstLogic(ctx context.Context, svcCtx *svc.ServiceContext) *VerifyFirstLogic { return &VerifyFirstLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 一审通过/驳回 func (l *VerifyFirstLogic) VerifyFirst(in *product.VerifyStatusReq) (*product.Response, error) { // todo: add your logic here and delete this line return &product.Response{}, nil }