docstatisticslogic.go 838 B

123456789101112131415161718192021222324252627282930
  1. package logic
  2. import (
  3. "context"
  4. "app.yhyue.com/moapp/jy_docs/rpc/stdlib/internal/svc"
  5. "app.yhyue.com/moapp/jy_docs/rpc/stdlib/stdlib"
  6. stdlibService "app.yhyue.com/moapp/jy_docs/services/stdlib"
  7. "github.com/zeromicro/go-zero/core/logx"
  8. )
  9. type DocStatisticsLogic struct {
  10. ctx context.Context
  11. svcCtx *svc.ServiceContext
  12. logx.Logger
  13. }
  14. func NewDocStatisticsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *DocStatisticsLogic {
  15. return &DocStatisticsLogic{
  16. ctx: ctx,
  17. svcCtx: svcCtx,
  18. Logger: logx.WithContext(ctx),
  19. }
  20. }
  21. func (l *DocStatisticsLogic) DocStatistics(in *stdlib.DocStatisticsReq) (*stdlib.DocChangeResp, error) {
  22. // todo: add your logic here and delete this line
  23. state := stdlibService.DocStatistics(in.DocId, in.AppId, int(in.DocStatisticsType))
  24. return &stdlib.DocChangeResp{State: state}, nil
  25. }