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