PostsService.java 457 B

123456789101112131415161718192021
  1. package com.nosum.deliver.posts.service;
  2. import com.nosum.common.base.domain.Result;
  3. import com.nosum.deliver.posts.domain.vo.PostsVO;
  4. public interface PostsService {
  5. /**
  6. * 按照时间归档文章数量
  7. */
  8. Result<PostsVO> getArchiveTotalByDateList(PostsVO postsVO);
  9. /**
  10. * 按照年维度查询带有文章标题的归档列表
  11. */
  12. Result getArchiveGroupYearList(PostsVO postsVO);
  13. Result getPostStatistics();
  14. }