package logic import ( "context" "bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/internal/svc" "bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/pb" "github.com/zeromicro/go-zero/core/logx" ) type AppointmentInfoLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewAppointmentInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AppointmentInfoLogic { return &AppointmentInfoLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 预热信息 func (l *AppointmentInfoLogic) AppointmentInfo(in *pb.AppointmentInfoReq) (*pb.AppointmentInfoResp, error) { // todo: add your logic here and delete this line return &pb.AppointmentInfoResp{}, nil }