72d55d396d
CI / changes (push) Successful in 36s
CI / docker-bff (push) Successful in 3m8s
CI / docker-product (push) Successful in 3m36s
CI / docker-admin (push) Successful in 3m35s
CI / docker-user (push) Successful in 9s
CI / docker-ad (push) Successful in 29s
CI / docker-chore (push) Failing after 4s
32 lines
666 B
Go
32 lines
666 B
Go
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
|
|
}
|