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
714 B
Go
32 lines
714 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 EditApplyPassLogic struct {
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
logx.Logger
|
|
}
|
|
|
|
func NewEditApplyPassLogic(ctx context.Context, svcCtx *svc.ServiceContext) *EditApplyPassLogic {
|
|
return &EditApplyPassLogic{
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
Logger: logx.WithContext(ctx),
|
|
}
|
|
}
|
|
|
|
// TODO: 临时接口,企微编辑申请审批对接后删除
|
|
func (l *EditApplyPassLogic) EditApplyPass(in *product.EditApplyPassReq) (*product.Response, error) {
|
|
// todo: add your logic here and delete this line
|
|
|
|
return &product.Response{}, nil
|
|
}
|