1234567891011121314151617181920212223242526272829303132333435 |
- package logic
- import (
- "context"
- "ylink/core/inner/rpc/internal/svc"
- "ylink/core/inner/rpc/pb"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type PlayerFetchCsInfoLogic struct {
- ctx context.Context
- svcCtx *svc.ServiceContext
- logx.Logger
- }
- func NewPlayerFetchCsInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PlayerFetchCsInfoLogic {
- return &PlayerFetchCsInfoLogic{
- ctx: ctx,
- svcCtx: svcCtx,
- Logger: logx.WithContext(ctx),
- }
- }
- func (l *PlayerFetchCsInfoLogic) PlayerFetchCsInfo(in *pb.InnerPlayerFetchCsInfoReq) (*pb.InnerPlayerFetchCsInfoResp, error) {
- // todo: 修改玩家在线状态
- return &pb.InnerPlayerFetchCsInfoResp{
- CsId: in.CsId,
- CsNickname: "vip客服1231",
- CsAvatarUrl: "https://www.baiduc.om",
- CsSignature: "服务时间:9:30-20:30",
- OnlineStatus: 1,
- }, nil
- }
|