xuzhiheng 1 年之前
父節點
當前提交
f08069b25c
共有 1 個文件被更改,包括 30 次插入0 次删除
  1. 30 0
      rpc/internal/logic/distributeclueshowlogic.go

+ 30 - 0
rpc/internal/logic/distributeclueshowlogic.go

@@ -0,0 +1,30 @@
+package logic
+
+import (
+	"context"
+
+	"bp.jydev.jianyu360.cn/BaseService/biService/rpc/internal/svc"
+	"bp.jydev.jianyu360.cn/BaseService/biService/rpc/pb"
+	"bp.jydev.jianyu360.cn/BaseService/biService/service"
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+type DistributeClueShowLogic struct {
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+	logx.Logger
+}
+
+func NewDistributeClueShowLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DistributeClueShowLogic {
+	return &DistributeClueShowLogic{
+		ctx:    ctx,
+		svcCtx: svcCtx,
+		Logger: logx.WithContext(ctx),
+	}
+}
+
+func (l *DistributeClueShowLogic) DistributeClueShow(in *pb.DistributeClueShowReq) (*pb.DistributeClueShowResp, error) {
+	// todo: add your logic here and delete this line
+
+	return service.DistributeClueShow(in), nil
+}