transfer_middleware/cmd/rpc/internal/logic/physicalFinanceBillLogic.go

32 lines
797 B
Go
Raw Permalink Normal View History

2024-11-06 18:00:56 +08:00
package logic
import (
"context"
"trasfer_middleware/until/common"
"trasfer_middleware/cmd/rpc/internal/svc"
"trasfer_middleware/cmd/rpc/pb/transfer"
"github.com/zeromicro/go-zero/core/logx"
)
type PhysicalFinanceBillLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewPhysicalFinanceBillLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PhysicalFinanceBillLogic {
return &PhysicalFinanceBillLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
func (l *PhysicalFinanceBillLogic) PhysicalFinanceBill(in *transfer.PhysicalFinanceBillReq) (*transfer.PhysicalFinanceBillRes, error) {
res, err := l.svcCtx.Physical.SetData(l.ctx, in.AppId, common.StructToMap(in), &l.svcCtx.Config.Mq).FinanceBill()
return res, err
}